我试图在我的主页上隐藏 Storefront 页面标题。这段代码从四面八方隐藏了它:
function sf_change_homepage_title( $args ) {
remove_action( 'storefront_page', 'storefront_page_header', 10 );
}
add_action( 'init', 'sf_change_homepage_title' );
但我不能使用 is_front_page() 因为 WordPress 在 $wp_query 对象设置为当前页面之前加载了functions.php,如此处所述。
我宁愿不使用插件“店面主题的标题切换”。
谢谢你。