有没有在详情页显示相关文章的wp主题
比如根据tag或者别的什么关键字来显示相关文章的有插件的啊 related什么的 谢谢 我找找看看 用插件吧。just another related post. 好像 <?php
//for use in the loop, list 5 post titles related to first tag on current post
$tags = wp_get_post_tags($post->ID);
if ($tags) {
echo 'Related Posts';
$first_tag = $tags->term_id;
$args=array(
'tag__in' => array($first_tag),
'post__not_in' => array($post->ID),
'showposts'=>5,
'caller_get_posts'=>1
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
<?php
endwhile;
}
}
?>根据当前文章的第一个tag,显示5篇related posts。 用插件吧 记得是这个吧WordPress Related Posts ,百度一下 能不用插件尽量不用,上楼的代码不错 daoday 发表于 2013-1-30 19:38 static/image/common/back.gif
能不用插件尽量不用,上楼的代码不错
能说下尽量不用的原因吗 我也想要个 用无觅啊! suyu8776 发表于 2013-1-30 19:41 static/image/common/back.gif
能说下尽量不用的原因吗
C版的帖子里有一部分答案,另外就是插件的了CPU占用也高,没少的流畅 这种插件很多的
页:
[1]