我在这里找到了问题的确切答案:
https://wordpress.stackexchange.com/a/17687/92505
下面是经过一些修改后我使用的代码,以使其适用于我的情况。
将以下代码添加到functions.php
哪里\'sidebar-1\'
是您的边栏ID。
\'recent-posts\'
是您想要隐藏的小部件的名称。
12
是字符串的长度\'recent-posts\'
希望有人会觉得它有用。
add_filter( \'sidebars_widgets\', \'wpse17681_sidebars_widgets\' );
function wpse17681_sidebars_widgets( $sidebars_widgets )
{
if ( is_home() || is_front_page() /* Or whatever */ ) {
foreach ( $sidebars_widgets as $sidebar_id => &$widgets ) {
if ( \'sidebar-1\' != $sidebar_id ) {
continue;
}
foreach ( $widgets as $idx => $widget_id ) {
// There might be a better way to check the widget name
if ( 0 === strncmp( $widget_id, \'recent-posts\', 12 ) ) {
unset( $widgets[$idx] );
}
}
}
}
return $sidebars_widgets;
}