suyu8776 发表于 2013-1-29 18:28:53

有没有在详情页显示相关文章的wp主题

比如根据tag或者别的什么关键字来显示相关文章的

gger 发表于 2013-1-29 19:00:07

有插件的啊 related什么的

suyu8776 发表于 2013-1-29 19:05:20

谢谢 我找找看看

wil 发表于 2013-1-29 19:17:05

用插件吧。just another related post. 好像

jap976 发表于 2013-1-29 21:28:30

<?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。

lrxsjh 发表于 2013-1-30 09:35:28

用插件吧

haichao 发表于 2013-1-30 16:57:40

记得是这个吧WordPress Related Posts ,百度一下

daoday 发表于 2013-1-30 19:38:44

能不用插件尽量不用,上楼的代码不错

suyu8776 发表于 2013-1-30 19:41:46

daoday 发表于 2013-1-30 19:38 static/image/common/back.gif
能不用插件尽量不用,上楼的代码不错

能说下尽量不用的原因吗

just 发表于 2013-1-30 23:27:50

我也想要个

sohorich 发表于 2013-1-30 23:29:37

用无觅啊!

daoday 发表于 2013-1-31 02:01:10

suyu8776 发表于 2013-1-30 19:41 static/image/common/back.gif
能说下尽量不用的原因吗

C版的帖子里有一部分答案,另外就是插件的了CPU占用也高,没少的流畅

sdwzzx 发表于 2013-1-31 10:14:44

这种插件很多的
页: [1]
查看完整版本: 有没有在详情页显示相关文章的wp主题