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

Posted

tags:

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

<?php query_posts('cat=3&showposts=10'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="blog-entry">
	<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
	<div class="post_content">
		<?php the_content(__('Read more…')); ?>
	</div> <!– close post content –>
	<div class="post-end-content">
			Posted in <?php the_category(', ') ?> | <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> <?php edit_post_link('Edit','',''); ?>
	</div>	
</div>
<?php endwhile; else: ?>
	Sorry, but you are looking for something that isn‘t here.
<?php endif; ?>
</div>

以上是关于PHP Wordpress:仅包含特定类别内容的页面的主要内容,如果未能解决你的问题,请参考以下文章

WordPress:如何仅显示特定类别的帖子?

从 WordPress 中的特定类别获取置顶帖子

如何将 wordpress/php 功能应用于特定的产品类别

PHP Wordpress:按自定义字段对特定类别排序

PHP 从Wordpress中的搜索结果中排除特定类别

Wordpress 自定义帖子类型分类 - 获取特定内容