0

我正在用 Wordpress 开发一个网站。我需要的是制作一个仅显示特定类别的帖子的页面。我该怎么办?

例如,页面 Javascript 仅显示带有 Javascript 类别的帖子。

4

2 回答 2

0
<?php query_posts('cat=1'); ?>

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

<?php the_title();?>

   <?php the_content(); ?>

<?php endwhile; endif; ?>

<?php wp_reset_query(); ?>

You can read more about query_post here http://codex.wordpress.org/Function_Reference/query_posts
于 2013-06-21T13:06:10.440 回答
0

我不知道您对 PHP 的了解程度如何,但您需要创建一个 Wordpress 模板,用于查询您的类别中的帖子。

您可以在此处阅读有关存档页面的信息,其中显示了您的所有帖子:

http://wp.tutsplus.com/tutorials/create-a-wordpress-archives-template-for-your-theme/

就在这之前:

<?php while ( have_posts() ) : the_post(); ?>

添加此以将其查询到特定类别:

<?php query_posts('category_name=News'); ?>

“新闻”是您的类别名称!

于 2013-06-21T12:58:21.713 回答