我希望在类别页面顶部有一个下拉菜单,以便我按日期过滤帖子。
我很可能不得不使用自定义字段,但这不是问题。
我知道您可以使用GET样式变量进行自定义帖子查询,但启用了漂亮的网址,我似乎无法使用GET变量来过滤特定帖子(例如www.domain.com/category/?orderby=title&order=ASC
等等)
我一直在尝试寻找插件,但似乎没有任何东西可以跳出来寻找我需要的东西,而且我也注意到很多关于类似主题的讨论,对我的情况没有合适的解决方案。
答案 0 :(得分:2)
一般查询如下:
<?php $posts = query_posts( $query_string . '&orderby=date&order=asc' ); ?>
<?php if( $posts ) : ?>
//whatever
<?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
//whatever
<p><?php the_content(); ?></p>
<?php endforeach; ?>
<?php endif; ?>
对于下拉菜单,您可以执行以下操作:
$args = $args=array(
'cat' => $cat_id,
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => -1,
'orderby' => 'DATE',
'order' => 'ASC' // or DESC
);
<form action="<? bloginfo('url'); ?>" method="get">
<select name="page_id" id="page_id">
<?php
global $post;
$args = array( 'numberposts' => -1);
$posts = get_posts($args);
foreach( $posts as $post ) : setup_postdata($post); ?>
<option value="<? echo $post->ID; ?>"><?php the_title(); ?></option>
<?php endforeach; ?>
</select>
<input type="submit" name="submit" value="view" />
</form>
另一种选择:
<?php
$cat_id = get_cat_ID('uncategorized'); //your-category
$args=array(
'cat' => $cat_id,
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => -1,
'orderby' => 'DATE',
'order' => 'ASC' // or DESC
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
?>
<form name="jump">
<select name="menu">
<?php
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<option value="<?php the_permalink() ?>"><?php the_title(); ?></option>
<?php
endwhile;
}
?>
</select>
<input type="button" onClick="location=document.jump.menu.options[document.jump.menu.selectedIndex].value;" value="Go">
</form>
<?php
wp_reset_query();
?>
答案 1 :(得分:0)
我正在按日期查找搜索帖子。无法在stackoverflow上找到合适的解决方案。然后我打印了wp_query对象并对此进行了排序。它对我有用。在我的场景中,按照标题或日期搜索帖子。这是钩子的代码。
function SearchFilter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
// check if query is a date
$search_query = $query->query['s'];
$date_format = DateTime::createFromFormat('d/M/Y', $search_query);
if ($date_format)
{
$dte = date('j',$date_format->getTimestamp());
$month = date('n',$date_format->getTimestamp());
$year = date('Y',$date_format->getTimestamp());
}
if (isset($dte) && isset($month) && isset($year)) {
unset($query->query['s']);
unset($query->query_vars['s']);
$query->query['date_query'] = array(
array(
'year' => $year,
'month' => $month,
'day' => $dte,
)
);
$query->set('date_query', array(
array(
'year' => $year,
'month' => $month,
'day' => $dte,
)
)
);
}
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');
你可以注意到这个过滤器会自动检查传递的param是字符串还是日期。使用
$query->set('post_type', 'post')
只获得其他方面的帖子结果,它也会获取页面。 假设你在每个帖子下都有日期,你可以在那个日期添加href。所以要获得该日期的所有帖子 在href的末尾添加搜索参数,例如?s = something
http://my.blog?s=1/Jun/2015
等模板你不需要写自定义,只需使用默认模板函数,如have_posts()