How to print title in wordpress ?

Use below code

<title><?php print get_the_title(); ?></title>

For home page

<title><?php print get_bloginfo( 'name' ); ?></title>

Full code

<?php if(is_front_page()){ ?>
<title><?php print get_bloginfo( 'name' ); ?></title>
<?php } else { ?>
<title><?php print get_the_title(); ?></title>
<?php } ?>


Related Post


Latest Post


Recent Posts Widget

Make sure to never miss a thing...

Get the latest news from the creative industry along with other creative goodies, conveniently delivered to social media.