早上好!我正在构建这个博客存档页面,它需要使用下拉列表按月过滤帖子。你知道怎么做吗?
<?php
// what goes here
printf(\'<option value=".%s">%s</option>\', `what_here`, `what_here`);
?>
早上好!我正在构建这个博客存档页面,它需要使用下拉列表按月过滤帖子。你知道怎么做吗?
<?php
// what goes here
printf(\'<option value=".%s">%s</option>\', `what_here`, `what_here`);
?>
您可以尝试使用wp_get_archives() 功能
此链接中的示例:
<select name="archive-dropdown" onchange="document.location.href=this.options[this.selectedIndex].value;">
<option value=""><?php esc_attr( _e( \'Select Month\', \'textdomain\' ) ); ?></option>
<?php wp_get_archives( array( \'type\' => \'monthly\', \'format\' => \'option\', \'show_post_count\' => 1 ) ); ?>
</select>
我知道我可以用wp_list_categories() 列出类别,但我如何才能同时列出各个类别下的帖子,下面是我想要实现的示例:类别1——cat1下的职位——cat1下的职位——cat2下的职位