您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“WordPress如何實現(xiàn)相關文章功能”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“WordPress如何實現(xiàn)相關文章功能”吧!
開始之前,說明一點,以下所有方法輸出的HTML代碼格式都是以下形式,你可以根據(jù)需要進行修改:
<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 篇文章就是與該文章相關的文章了。現(xiàn)在可以見到的WordPress相關文章插件都是使用的這個方法。下面是實現(xiàn)的代碼:
<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() 函數(shù)來調(diào)用相關文章,以下是參數(shù)列表
$args = array(
'tag__in' => array($post_tag),
'category__not_in' => array(NULL), // 不包括的分類ID
'post__not_in' => array($post->ID),
'showposts' => 6, // 顯示相關文章數(shù)量
'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() 的參數(shù) tag__in 賦多少個值,都是只顯示一個標簽下的 6 篇文章,除非第一個標簽有1篇,第二個標簽有2篇,第三個有3篇。。。。。。所以如果這篇文章有多個標簽,那么我們采取的做法是隨機獲取一個標簽的id,賦值給 tag__in 這個參數(shù),獲取該標簽下的6篇文章。
本方法是通過獲取該文章的分類id,然后獲取該分類下的文章,來達到獲取相關文章的目的。
<ul id="cat_related"><?phpglobal $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>
獲取相關文章的原理與方法一相似,不過在獲取文章的時候是以SQL語句來直接讀取數(shù)據(jù)庫,從而隨機獲取6篇相關文章記錄,而不是WordPress的函數(shù)query_posts().
<ul id="tags_related"><?phpglobal $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篇相關文章
// 通過修改數(shù)字 6,可修改你想要的文章數(shù)量
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>
獲取相關文章的原理與方法二相似,不過在獲取文章的時候是以SQL語句來直接讀取數(shù)據(jù)庫,從而隨機獲取6篇相關文章記錄,而不是WordPress的函數(shù)query_posts().
<ul id="cat_related"><?phpglobal $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>
該方法是獲取該文章作者的其他文章來充當相關文章,代碼如下:
<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, // 顯示相關文章數(shù)量
'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>
我們對以上各個相關文章代碼執(zhí)行時間進行測算,以便對以上各個的方法進行效率,給你的選擇提供參考。以下是在同一篇文章中獲取6篇相關文章,以上各方法最終測算的時間如下:
方法一:0.18067908287048 秒
方法二:0.057158946990967 秒
方法三:0.037126064300537 秒
方法四:0.045628070831299 秒
方法五:0.023991823196411 秒
到此,相信大家對“WordPress如何實現(xiàn)相關文章功能”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關內(nèi)容可以進入相關頻道進行查詢,關注我們,繼續(xù)學習!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。