為您的佈景主題增添下拉式選單 – 分類與彙整
分類
<?php wp_dropdown_categories('show_option_all=選擇分類&orderby=name&hierarchical=1'); ?>
<script type="text/javascript"><!--
var dropdown = document.getElementById("cat");
function onCatChange() {
if ( dropdown.options[dropdown.selectedIndex].value > 0 ) {
location.href = "<?php echo get_option('home'); ?>/?cat="+dropdown.options[dropdown.selectedIndex].value;
}
}
dropdown.onchange = onCatChange;
--></script>
更多 wp_dropdown_categories 的引數(Parameters)。
彙整
<select name="archive-dropdown" onchange='document.location.href=this.options[this.selectedIndex].value;'>
<option value=""><?php echo attribute_escape(__('Select Month')); ?></option>
<?php wp_get_archives('format=option&show_post_count=1'); ?>
</select>
更多 wp_get_archives 的引數(Parameters)。