Last active
October 2, 2023 17:58
-
-
Save sudipbd/06800c5fcb72ae136735271f3ded7b93 to your computer and use it in GitHub Desktop.
Display Title in Wordpress Custom Post
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php //for custom post?> | |
<title><?php bloginfo('name'); ?> <?php is_front_page() ? bloginfo('description') : wp_title(''); ?></title> | |
<?php //for static homepage?> | |
<title><?php bloginfo('name'); ?> » <?php is_front_page() ? bloginfo('description') : wp_title(''); ?></title> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment