0

谁能帮我编辑这段代码?我有 2 个类别,点击后我会显示该类别的所有帖子。现在我在两个类别中都看到了类别 id 8 的内容。我的代码来自 category.php

    <?php
$args = array( 'posts_per_page' => 5, 'category' => 8);

$myposts = get_posts( $args );
foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
    <li class="ikonakategoriiwpisu">
        <a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php the_post_thumbnail( 'thumbnail' ); ?>  </a><?php the_excerpt(); ?>
    </li>
<?php endforeach; 
wp_reset_postdata();?>
4

1 回答 1

1

如果您的页面网址有类别,那么您可以像这样使用

$category_id = get_query_var('cat');
$args = array( 'posts_per_page' => 5, 'category' =>$category_id ); 
于 2013-11-14T12:26:17.233 回答