I have been searching high and low trying to find the post that was on here a couple of months back on how to filter the site tagline/description...
What I am trying to accomplish is that I have a two language site and want to be able to replace the tagline depending on what lang is selected.
I am already filtering the hybrid_site_description with
add_filter( 'hybrid_site_description', 'my_single_subtitle' );
function my_single_subtitle( $title ) {
global $post;
if ( !is_page() )
return $title;
$subtitle = __(get_post_meta( $post->ID, 'Subtitle', true ));
if ( $subtitle )
$title .= '<div id="subheading"><span>' . $subtitle . '</span></div>';
return $title;
}
I would like the tagline to be visible throughout the whole site, but am kinda stumped on how to perform this, any help greatly received as usual...