如何在wordpress中为特定类别设置档案

时间:2012-04-16 00:34:13

标签: php wordpress

我正在使用wordpress创建一个网站。我有一些菜单项/标签,每个都显示博客的一部分,但是根据类别进行过滤,因此每个标签的网址结构都是:

examplewebsite.com/?category=1
examplewebsite.com/?category=3

根据选择的标签。在每个页面上都有一个日历小部件,允许我单击日期以查看特定日期的帖子。日历发送到网址结构,如:

examplewebsite.com/?m=20120415
examplewebsite.com/?m=20120417

然而,这将显示基于日期的所有类别。我想设置它,如果我在这个页面上:examplewebsite.com/?category=1,我点击日历,它将“&?m = 20120415”添加到我当前的URL,这将包括类别过滤器

我对java有相当广泛的知识,但基本上不了解php。

1 个答案:

答案 0 :(得分:0)

试试这个链接,wp query_post显示帖子,它确实有一个基于类别获取帖子的参数

http://codex.wordpress.org/Function_Reference/query_posts

<?php

// The Query
query_posts('cat=1');
//get the post under the category 1

// The Loop
while ( have_posts() ) : the_post();
    echo '<li>';
    the_title();
    echo '</li>';
endwhile;

// Reset Query
wp_reset_query();

?>