Skip to content

Instantly share code, notes, and snippets.

@sudipbd
Last active October 2, 2023 17:58
Show Gist options
  • Save sudipbd/06800c5fcb72ae136735271f3ded7b93 to your computer and use it in GitHub Desktop.
Save sudipbd/06800c5fcb72ae136735271f3ded7b93 to your computer and use it in GitHub Desktop.
Display Title in Wordpress Custom Post
<?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'); ?> &raquo; <?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