Luxeritas の場合、子テーマの functions.php に以下のように書くとトップページ以外は非表示になります。
add_action( ‘template_redirect’, function() {
global $luxe;
if( is_home() === false && is_front_page() === false ) {
unset( $luxe[‘logo_img’] );
}
}, 98 );
add_action( ‘template_redirect’, function() {
global $luxe;
if( is_home() === false && is_front_page() === false ) {
unset( $luxe[‘logo_img’] );
}
}, 98 );

コメント Leave a Comment