在标记下搜索后widget Google我找到的最接近我所寻找的内容是这篇文章:Is there a way to allow only certain type of widgets in the sidebars?
我还找到了以下页面:How to add a specific widget to only 1 page?.
我看了抄本dynamic_sidebar()
和register_sidebar()
但我看不出有人去Widgets面板,在可用Widgets区域下,你可以限制widget可以应用到什么位置。
Question: 如果我希望标签云小部件只允许在某个已注册的侧栏中使用,在这种情况下foobar
我在哪里限制允许的内容?
// Custom widget area for foobar.
if ( function_exists( \'register_sidebar\' ) ) {
register_sidebar( array(
\'name\' => __( \'Foobar Sidebar\', \'text_domain\'),
\'id\' => \'widget-foobar\',
\'description\' => __( \'A custom widget area for foobar\', \'text_domain\' ),
\'before_widget\' => \'some-code\',
\'after_widget\' => \'some-code\',
\'before_title\' => \'some-code\',
\'after_title\' => \'some-code\',
));
}
或者如何限制我注册的特定区域的自定义和默认小部件?