PHP Wordpress在页面上显示类别的内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress在页面上显示类别的内容相关的知识,希望对你有一定的参考价值。

<?php if (is_page('pagename')) { query_posts('cat=yx') } ?>

<!--or use query_posts like this:(full loop)-->

<?php
    $displayposts = new WP_Query();
    $displayposts->query('cat=5');
    while ($displayposts->have_posts()) : $displayposts->the_post(); 
?>
  <?php the_content('read more...'); ?>
  <?php edit_post_link('edit', '', ''); ?>


<?php endwhile; ?>

以上是关于PHP Wordpress在页面上显示类别的内容的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Wordpress 的存档页面上显示所有类别的帖子?

类别页面空白,但商店在 WordPress 上的 WooCommerce 上工作

PHP Wordpress:仅包含特定类别内容的页面

Wordpress 类别模板显示来自所有类别的帖子,而不是特定类别的帖子

PHP Wordpress根据页面显示类别中的帖子。

在单个页面上突出显示当前Wordpress类别';wp#u list';