WordPress代碼實現相關文章的幾種方法

WordPress不少插件能夠實現相關文章的功能,插件的優勢是配置簡單,可是可能會對網站的速度形成一些小的影響,因此不少人仍是比較喜歡用 代碼實現須要的功能,可是話又說回來了,代碼實現也有缺點,就是配置複雜,不懂代碼的人徹底摸不着頭腦或者只能照搬別人的代碼,還不如用插件。 php

這裏我整理編寫了幾種用代碼實現相關文章的方法,這其中會詳細標明各部分代碼的做用,以及如何自定義你想要的功能,但願對你們有所幫助,有什麼問題 能夠給本文發表評論,我會及時給你回覆。 數據庫

更多:PHP教程 函數

開始以前,說明一點,如下全部方法輸出的HTML代碼格式都是如下形式,你能夠根據須要進行修改: post

<ul id="xxx"> <li>* <a title="文章標題1" rel="bookmark" href="文章連接1">文章標題1</a></li> <li>* <a title="文章標題2" rel="bookmark" href="文章連接2">文章標題2</a></li> ...... </ul>

方法一:標籤相關

首先獲取文章的全部標籤,接着獲取這些標籤下的 n 篇文章,那麼這 n 篇文章就是與該文章相關的文章了。如今能夠見到的WordPress相關文章插件都是使用的這個方法。下面是實現的代碼: 網站

<ul id="tags_related">
<?php
global $post;
$post_tags = wp_get_post_tags($post->ID);
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 endwhile; else : ?>
<li>* 暫無相關文章</li>
<?php endif; wp_reset_query(); } ?>
</ul>

使用說明:"不包括的分類ID" 指的是相關文章不顯示該分類下的文章,將同行的 NULL 改爲文章分類的ID便可,多個ID就用半角逗號隔開。由於這裏限制只顯示6篇相關文章,因此無論給 query_posts() 的參數 tag__in 賦多少個值,都是隻顯示一個標籤下的 6 篇文章,除非第一個標籤有1篇,第二個標籤有2篇,第三個有3篇。。。。。。因此若是這篇文章有多個標籤,那麼咱們採起的作法是隨機獲取一個標籤的id, 賦值給 tag__in 這個參數,獲取該標籤下的6篇文章。 插件

方法二:分類相關

本方法是經過獲取該文章的分類id,而後獲取該分類下的文章,來達到獲取相關文章的目的。 code

<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 endwhile; else : ?>
<li>* 暫無相關文章</li>
<?php endif; wp_reset_query(); } ?>
</ul>

方法三:標籤相關,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 { ?>
<li>暫無相關文章</li>
<?php } } ?>
</ul>

方法四:分類相關,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 { ?>
<li>* 暫無相關文章</li>
<?php } }?>
</ul>

方法五:做者相關

該方法是獲取該文章做者的其餘文章來充當相關文章,代碼以下: ip

<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 endwhile; else : ?>
<li>* 暫無相關文章www.iiwnet.com www.niutw.com</li>
<?php endif; wp_reset_query();  ?>
</ul>
相關文章
相關標籤/搜索