- A+
在网上查找了相关资料,参考了几个wordpress博客的文章,马找钱整理了有关WordPress博客文章页实现相关文章推荐的几种方法。
一、标题/缩略图样式
1.添加标题列表样式的相关文章

将下面的代码添加到 single.php 要显示相关文章的位置即可:
- <h3>相关文章</h3>
- <ul class="related_posts">
- <?php
- $post_num = 8;
- $exclude_id = $post->ID;
- $posttags = get_the_tags(); $i = 0;
- if ( $posttags ) {
- $tags = ''; foreach ( $posttags as $tag ) $tags .= $tag->term_id . ',';
- $args = array(
- 'post_status' => 'publish',
- 'tag__in' => explode(',', $tags),
- 'post__not_in' => explode(',', $exclude_id),
- 'caller_get_posts' => 1,
- 'orderby' => 'comment_date',
- 'posts_per_page' => $post_num,
- );
- query_posts($args);
- while( have_posts() ) { the_post(); ?>
- <li><a rel="bookmark" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" target="_blank"><?php the_title(); ?></a></li>
- <?php
- $exclude_id .= ',' . $post->ID; $i ++;
- } wp_reset_query();
- }
- if ( $i < $post_num ) {
- $cats = ''; foreach ( get_the_category() as $cat ) $cats .= $cat->cat_ID . ',';
- $args = array(
- 'category__in' => explode(',', $cats),
- 'post__not_in' => explode(',', $exclude_id),
- 'caller_get_posts' => 1,
- 'orderby' => 'comment_date',
- 'posts_per_page' => $post_num - $i
- );
- query_posts($args);
- while( have_posts() ) { the_post(); ?>
- <li><a rel="bookmark" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" target="_blank"><?php the_title(); ?></a></li>
- <?php $i++;
- } wp_reset_query();
- }
- if ( $i == 0 ) echo '<li>没有相关文章!</li>';
- ?>
- </ul>
PS:第四行$post_num = 8;表示显示8篇文章,请根据自己的需要修改。显示样式需要自己写css,可以参考一下下面的:
- .related_posts{margin-top:5px;margin-left:10px;margin-bottom:20px;height:150px;list-style-position: inside;}
- .related_posts li{margin-left:20px;color:#444;list-style:circle;font-size:14px;line-height:26px;padding:0 0 0 5px;float:left;width:45%;padding-right:9px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
2、添加含缩略图的相关文章

- //添加特色缩略图支持
- if ( function_exists('add_theme_support') )add_theme_support('post-thumbnails');
- //输出缩略图地址 From wpdaxue.com
- function post_thumbnail_src(){
- global $post;
- if( $values = get_post_custom_values("thumb") ) { //输出自定义域图片地址
- $values = get_post_custom_values("thumb");
- $post_thumbnail_src = $values [0];
- } elseif( has_post_thumbnail() ){ //如果有特色缩略图,则输出缩略图地址
- $thumbnail_src = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID),'full');
- $post_thumbnail_src = $thumbnail_src [0];
- } else {
- $post_thumbnail_src = '';
- ob_start();
- ob_end_clean();
- $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
- $post_thumbnail_src = $matches [1] [0]; //获取该图片 src
- if(empty($post_thumbnail_src)){ //如果日志中没有图片,则显示随机图片
- $random = mt_rand(1, 10);
- echo get_bloginfo('template_url');
- echo '/images/pic/'.$random.'.jpg';
- //如果日志中没有图片,则显示默认图片
- //echo '/images/default_thumb.jpg';
- }
- };
- echo $post_thumbnail_src;
- }
PS:第四行$post_num = 4; 表示调用4篇文章,请根据自己需要修改。css样式自己写,也可参考一下:
- .related_posts{margin-top:5px;}
- .related_img{width:600px;height:210px;}
- .related_box{float:left;overflow:hidden;margin-top:5px;width:148px;border-right:1px #eee solid}
- .related_box:hover{background:#f9f9f9}
- .related_box .r_title{width:auto;height:72px;font-weight:400;font-size:14px;margin:0 10px;overflow:hidden;}
- .related_box .r_pic{margin:6px}
- .related_box .r_pic img{width:130px;height:100px;border:1px solid #e1e1e1;background:#fff;padding:2px}
二、五种不同添加(仅标题)方法
1、标签相关
首先获取文章的所有标签,接着获取这些标签下的 n 篇文章,那么这 n 篇文章就是与该文章相关的文章了。现在可以见到的WordPress相关文章插件都是使用的这个方法。下面是实现的代码:
- if ($post_tags) {
- foreach ($post_tags as $tag) {
- // 获取标签列表
- $tag_list[] .= $tag->term_id;
- }
- // 随机获取标签列表中的一个标签
- $post_tag = $tag_list[ mt_rand(0, count($tag_list) - 1) ];
- // 该方法使用 query_posts() 函数来调用相关文章,以下是参数列表
- $args = array(
- 'tag__in' => array($post_tag),
- 'category__not_in' => array(NULL), // 不包括的分类ID
- 'post__not_in' => array($post->ID),
- 'showposts' => 6, // 显示相关文章数量
- 'caller_get_posts' => 1
- );
- query_posts($args);
- if (have_posts()) {
- while (have_posts()) {
- the_post(); update_post_caches($posts); ?>
- <li>* <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
- <?php
- }
- }
- else {
- echo '<li>* 暂无相关文章</li>';
- }
- wp_reset_query();
- }
- else {
- echo '<li>* 暂无相关文章</li>';
- }
- ?>
- </ul>
使用说明:"不包括的分类ID" 指的是相关文章不显示该分类下的文章,将同行的 NULL 改成文章分类的ID即可,多个ID就用半角逗号隔开。因为这里限制只显示6篇相关文章,所以不管给 query_posts() 的参数 tag__in 赋多少个值,都是只显示一个标签下的 6 篇文章,除非第一个标签有1篇,第二个标签有2篇,第三个有3篇。。。。。。所以如果这篇文章有多个标签,那么我们采取的做法是随机获取一个标签的id,赋值给 tag__in 这个参数,获取该标签下的6篇文章。
2、分类相关
本方法是通过获取该文章的分类id,然后获取该分类下的文章,来达到获取相关文章的目的。
- <ul id="cat_related">
- <?php
- global $post;
- $cats = wp_get_post_categories($post->ID);
- if ($cats) {
- $args = array(
- 'category__in' => array( $cats[0] ),
- 'post__not_in' => array( $post->ID ),
- 'showposts' => 6,
- 'caller_get_posts' => 1
- );
- query_posts($args);
- if (have_posts()) {
- while (have_posts()) {
- the_post(); update_post_caches($posts); ?>
- <li>* <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
- <?php
- }
- }
- else {
- echo '<li>* 暂无相关文章</li>';
- }
- wp_reset_query();
- }
- else {
- echo '<li>* 暂无相关文章</li>';
- }
- ?>
- </ul>
3、标签相关,SQL获取
获取相关文章的原理与方法一相似,不过在获取文章的时候是以SQL语句来直接读取数据库,从而随机获取6篇相关文章记录,而不是WordPress的函数query_posts()。
- <ul id="tags_related">
- <?php
- global $post, $wpdb;
- $post_tags = wp_get_post_tags($post->ID);
- if ($post_tags) {
- $tag_list = '';
- foreach ($post_tags as $tag) {
- // 获取标签列表
- $tag_list .= $tag->term_id.',';
- }
- $tag_list = substr($tag_list, 0, strlen($tag_list)-1);
- $related_posts = $wpdb->get_results("
- SELECT DISTINCT ID, post_title
- FROM {$wpdb->prefix}posts, {$wpdb->prefix}term_relationships, {$wpdb->prefix}term_taxonomy
- WHERE {$wpdb->prefix}term_taxonomy.term_taxonomy_id = {$wpdb->prefix}term_relationships.term_taxonomy_id
- AND ID = object_id
- AND taxonomy = 'post_tag'
- AND post_status = 'publish'
- AND post_type = 'post'
- AND term_id IN (" . $tag_list . ")
- AND ID != '" . $post->ID . "'
- ORDER BY RAND()
- LIMIT 6");
- // 以上代码中的 6 为限制只获取6篇相关文章
- // 通过修改数字 6,可修改你想要的文章数量
- if ( $related_posts ) {
- foreach ($related_posts as $related_post) {
- ?>
- <li><a href="<?php echo get_permalink($related_post->ID); ?>" rel="bookmark" title="<?php echo $related_post->post_title; ?>"><?php echo $related_post->post_title; ?></a></li>
- <?php }
- }
- else {
- echo '<li>暂无相关文章</li>';
- }
- }
- else {
- echo '<li>暂无相关文章</li>';
- }
- ?>
- </ul>
4、分类相关,SQL获取
获取相关文章的原理与方法二相似,不过在获取文章的时候是以SQL语句来直接读取数据库,从而随机获取6篇相关文章记录,而不是WordPress的函数query_posts()。
- <ul id="cat_related">
- <?php
- global $post, $wpdb;
- $cats = wp_get_post_categories($post->ID);
- if ($cats) {
- $related = $wpdb->get_results("
- SELECT post_title, ID
- FROM {$wpdb->prefix}posts, {$wpdb->prefix}term_relationships, {$wpdb->prefix}term_taxonomy
- WHERE {$wpdb->prefix}posts.ID = {$wpdb->prefix}term_relationships.object_id
- AND {$wpdb->prefix}term_taxonomy.taxonomy = 'category'
- AND {$wpdb->prefix}term_taxonomy.term_taxonomy_id = {$wpdb->prefix}term_relationships.term_taxonomy_id
- AND {$wpdb->prefix}posts.post_status = 'publish'
- AND {$wpdb->prefix}posts.post_type = 'post'
- AND {$wpdb->prefix}term_taxonomy.term_id = '" . $cats[0] . "'
- AND {$wpdb->prefix}posts.ID != '" . $post->ID . "'
- ORDER BY RAND( )
- LIMIT 6");
- if ( $related ) {
- foreach ($related as $related_post) {
- ?>
- <li>* <a href="<?php echo get_permalink($related_post->ID); ?>" rel="bookmark" title="<?php echo $related_post->post_title; ?>"><?php echo $related_post->post_title; ?></a></li>
- <?php
- }
- }
- else {
- echo '<li>* 暂无相关文章</li>';
- }
- }
- else {
- echo '<li>* 暂无相关文章</li>';
- }
- ?>
- </ul>
5、作者相关
该方法是获取该文章作者的其他文章来充当相关文章,代码如下:
- <ul id="author_related">
- <?php
- global $post;
- $post_author = get_the_author_meta( 'user_login' );
- $args = array(
- 'author_name' => $post_author,
- 'post__not_in' => array($post->ID),
- 'showposts' => 6, // 显示相关文章数量
- 'orderby' => date, // 按时间排序
- 'caller_get_posts' => 1
- );
- query_posts($args);
- if (have_posts()) {
- while (have_posts()) {
- the_post(); update_post_caches($posts); ?>
- <li>* <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
- <?php
- }
- }
- else {
- echo '<li>* 暂无相关文章</li>';
- }
- wp_reset_query();
- ?>
- </ul>
以上就是马找钱整理总结的WordPress博客文章页实现相关文章推荐的几种方法,希望此文章可以对使用WordPress的站长有所帮助。如有问题可以在下方给我评论留言。
- 我的微信
- 技术支持添加二维码
-
- 我的QQ二维码
- 教程下载请扫二维码
-