鹿泽鹿泽  2024-07-26 16:08:25 鹿泽笔记 隐藏边栏  0 

我们在使用wordpress制作网站的时候,往往需要在文章页调用当前文章所属分类下所有文章的列表,这时我们经常使用到的一个功能。这个功能究竟是如何实现的?其实很简单,只需要把下面的代码复制到相应的位置并稍加修改即可:

<?php
$singleurl = get_permalink($post_id);
$cats = wp_get_post_categories($post->ID);
if ($cats) {
    $args = array(
    'category__in' => array( $cats[0] ),
    'showposts' => 50,
    'caller_get_posts' => 1
);
query_posts($args);
if (have_posts()) : while (have_posts()) : the_post(); update_post_caches($posts); ?>
<li<?php if(get_permalink($post_id)==$singleurl){?> class="video-curry"<?php }?>><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; else : ?>
<li> 暂无文章</li>
<?php endif; wp_reset_query(); } ?>
1、文章版权归作者所有,未经允许请勿转载。
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505