Reputation: 6320
Can you please let me know how I can use the wp_title() function to grab each page titles in WordPress. I used the following code to get the title in different page based on titles but it dost' work!
Here is the code I am using
<title>
<?php
if (is_front_page()) {
bloginfo('name'); }
elseif (is_page()) {
wp_title(); echo ' - '; bloginfo('name'); }
?>
</title>
Upvotes: 1
Views: 2007
Reputation: 31
you may use
<title>
<?php
if ( is_home() ) {
bloginfo('name');
} else {
wp_title('',true,'');
echo " | ";
bloginfo('name');
}
?>
</title>
Upvotes: 0
Reputation: 408
Try this :
<?php wp_title('|', true, 'right'); ?>
Here is the function reference link : http://codex.wordpress.org/Plugin_API/Filter_Reference/wp_title
Cheers!
Upvotes: 1