查看“Primer”主题的源代码,似乎有一个可用的过滤器primer_the_site_title_args
在里面/inc/hooks.php, 它包装在is\\u home()的条件中。在函数中添加了如下内容。如果选择以下选项,子主题中的php应允许主页上的标题为h2:
add_filter( \'primer_the_site_title_args\', function( $args ) {
if ( is_home() ) {
$args[\'wrapper\'] = \'h2\';
}
return $args;
} );