Disable Home Title in Wordpress
Replace
<?php the_title(); ?>
with
<?php if ( ! is_front_page() ) { the_title(); } ?>
in page.php to not show title on home page if you want
<?php the_title(); ?>
with
<?php if ( ! is_front_page() ) { the_title(); } ?>
in page.php to not show title on home page if you want
Comments
Post a Comment