0

我正在用 wordpress 做一个网站。我有几个菜单项/选项卡,每个选项卡都显示博客的一部分,但根据类别进行过滤,因此每个选项卡的 url 结构将是:

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

根据选择的选项卡。在每个页面上都有一个日历小部件,可让我单击日期以查看该特定日期的帖子。日历发送到一个 url 结构,如:

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

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

我对java有相当广泛的了解,但对php基本上一无所知。

4

1 回答 1

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();

?>
于 2012-04-16T01:52:06.373 回答