我有一个侧边栏,其中包含在functions.php
中创建的所有类别// Widgets Setup
function init_widgets($id) {
register_sidebar(array(
'name' => 'Sidebar',
'id' => 'sidebar',
'before_widget' => '<div>',
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>'
));
}
add_action('widgets_init', 'init_widgets');
这用于显示wordpress中的所有类别。
当我点击某个类别时,我需要打开一个搜索框并在该特定类别中搜索。
提前谢谢。