How to Set Wordpress Post Title Format not use blog name in every single post only show post name Please Give me Code For Manually
You can set in header.php like this way <?php if(is_home()) {?> <h1>Your Blog Title </h1> <?php } else {?> //If you want to remove blog title remove below line //I think in single pages try to keep blogtitle in <h3> tag so, that will be better <h3>Your Blog Title</h3> <?php }?> Thanks,