On December 17, 2013 at 7:46 am
right. you mean in the title bar..
open up header.php and replace this:
<?php wp_title(); ?>
with this:
<?php wp_title( '|', true, 'right' ); ?>
Then open up functions.php and add this to your functions.php:
//theron Site title
function theron_wp_title( $title, $sep ) {
global $paged, $page;
if ( is_feed() )
return $title;
// Add the site name.
$title .= get_bloginfo( 'name' );
// Add the site description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
$title = "$title $sep $site_description";
// Add a page number if necessary.
if ( $paged >= 2 || $page >= 2 )
$title = "$title $sep " . sprintf( __( 'Page %s', 'theron' ), max( $paged, $page ) );
return $title;
}
add_filter( 'wp_title', 'theron_wp_title', 10, 2 );
before this:
function thn_mobile_css() {