我使用博客设计插件为网格视图UI制作了我的网站博客。并使用短代码在页面模板上显示博客。我想在所有博客显示的上方添加一个搜索表单,并且在该搜索表单中我想要明智地过滤所有博客类别。当我点击任何类别时,只在所有博客显示过滤的同一页面上选择了类别博客节目。 enter image description here
如果有人有任何想法,请告诉我。 我用它来搜索 “method =”get“>
<?php
$args = array(
'show_option_none' => __( 'Select category' ),
'show_count' => 1,
'orderby' => 'name',
'echo' => 0,
'class' => 'form-control',
);
?>
<?php $select = wp_dropdown_categories( $args ); ?>
<?php $replace = "<select$1 onchange='return this.form.submit()'>"; ?>
<?php $select = preg_replace( '#<select([^>]*)>#', $replace, $select ); ?>
<?php echo $select; ?>
<noscript>
<input type="submit" value="View" />
</noscript>
</form>