按类别分类的Wordpress

时间:2013-06-21 10:07:22

标签: wordpress

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

例如,页面Javascript,只显示带有cateogry Javascript的帖子。

2 个答案:

答案 0 :(得分: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'); ?>

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

答案 1 :(得分: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