if ( is_front_page() ) {
remove_action( 'storefront_page', 'storefront_page_header' );
}
我尝试过以下答案:
How to hide page title from WooCommerce Storefront theme homepage?
&安培;
WooCommerce StoreFront child theme - How to remove title on homepage
以下代码有效,但仅适用于商店页面。我找不到主页的条件标签。
function wc_hide_page_title()
{
if( !is_shop() ) // is_shop is the conditional tag
return true;
}
add_filter( 'woocommerce_show_page_title', 'wc_hide_page_title' );
任何人都可以在不使用插件的情况下帮助我这样做。谢谢!
答案 0 :(得分:0)
试试这个
function wc_hide_page_title() {
if( is_front_page() )
return true;
}
add_filter( 'woocommerce_show_page_title', 'wc_hide_page_title' );
答案 1 :(得分:0)
此功能在发布时有效:
function jasom_dotnet_change_homepage_title( $args ) {
if(is_front_page()) {
remove_action( 'storefront_page', 'storefront_page_header', 10 );
}
}
add_action( 'wp', 'jasom_dotnet_change_homepage_title' );
答案 2 :(得分:0)
如果您正在使用店面首页模板,则需要使用storefront_homepage操作。
function wc_hide_page_title() {
if( is_front_page() )
remove_action( 'storefront_homepage', 'storefront_homepage_header', 10 );
}
add_action( 'woocommerce_show_page_title', 'wc_hide_page_title');
答案 3 :(得分:-1)
尝试使用以下代码隐藏主页或任何特定页面上的页面标题。
function wc_hide_page_title()
{
if( !is_page('home') ) // is_page is the conditional tag. 'home' is the page slug or use ID of the page instead of page slug.
return true;
}
add_filter( 'woocommerce_show_page_title', 'wc_hide_page_title' );