如果设置为,则此代码将标题设置为空字符串Recent Posts
(正如您所指出的,如果标题为空,则“最近的帖子”小部件将设置标题):
add_filter( \'widget_title\', \'wpse_widget_title\', 10, 3 );
function wpse_widget_title( $title, $instance, $id_base ) {
if ( \'recent-posts\' === $id_base && __( \'Recent Posts\', \'text_domain\' ) === $title ) {
$title = \'\';
}
return $title;
}
另一种解决方法是为空间的HTML实体设置标题,
在小部件编辑器中。