开发者

wordpress - posts by category

开发者 https://www.devze.com 2023-02-09 17:18 出处:网络
in wordpress how to displayp开发者_如何学运维osts by category in sidebar? Try this plugin for listing the category posts as widget for your

in wordpress how to display p开发者_如何学运维osts by category in sidebar?


  1. Try this plugin for listing the category posts as widget for your sidebar.

Category Posts Widget

                               [OR]


<?php query_posts('category_name=your-category-name&showposts=5&order=asc'); ?>
<?php while (have_posts()) : the_post(); ?>
<h2 class="head1"><?php the_title(); ?></h2>   
<?php the_content(); ?>
<?php endwhile;?>
0

精彩评论

暂无评论...
验证码 换一张
取 消