Posts

Showing posts with the label wordpress pages

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