亚洲国产精品久久一线不卡,日韩av片无码一区二区不卡电影 ,欧美搡BBBBB搡BBBBB,18禁裸男晨勃露J毛免费观看

專業(yè)WORDPRESS主題設(shè)計(jì)制作

WordPress代碼實(shí)現(xiàn)獲取顯示相關(guān)文章推薦猜你喜歡功能(wordpress頁(yè)面和文章)

發(fā)布于: 2022-11-03

1 WordPress相關(guān)文章推薦、猜你喜歡代碼示例

  • 2 WordPress怎么做相關(guān)相似文章鏈接?

 

很多WordPress插件都可以實(shí)現(xiàn)相關(guān)文章推薦、猜你喜歡的功能。

  • WordPress插件的優(yōu)點(diǎn)是配置簡(jiǎn)單,但可能對(duì)網(wǎng)站有一定影響。
  • 所以,很多人還是喜歡用WordPress代碼來(lái)實(shí)現(xiàn)相關(guān)文章、猜你喜歡的功能。
  • 但同樣地,代碼實(shí)現(xiàn)相關(guān)文章、猜你喜歡功能也是自相矛盾的,代碼的缺點(diǎn)是配置較復(fù)雜。

 

bluehost-wordpress_015

WordPress相關(guān)文章推薦、猜你喜歡代碼示例

以下是從標(biāo)簽、分類獲取相關(guān)文章的猜你喜歡代碼:

<h3>猜你喜歡</h3>
<ul class="related_posts">
<?php
$post_num = 10; //文章數(shù)量
$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>暫無(wú)相關(guān)推薦</li>';
?>
</ul>
  • 其中 $post_num = 10; 是顯示相關(guān)文章的數(shù)量為10。
  • 如果在WordPress的頁(yè)面,是沒(méi)有標(biāo)簽和分類的,則顯示“暫無(wú)相關(guān)推薦”。

 

希望我們網(wǎng)站( https://www.wordpressx.com/ ) 分享的《WordPress代碼實(shí)現(xiàn)獲取顯示相關(guān)文章推薦猜你喜歡功能》,對(duì)您有幫助。

TAG:
WP技術(shù)資料 wordpress模板制作、wordpress主題開發(fā)相關(guān)知識(shí)常見問(wèn)題總結(jié)
MORE
服務(wù)電話:
0533-2765967

微信 13280692153