How can I remove the blog description from the doc <title>?
I only want the blog name to show.
Do I do this with functions?
And what code exactly would I need to insert or modify.
Am completely new to this, have no idea how to edit functions.
How can I remove the blog description from the doc <title>?
I only want the blog name to show.
Do I do this with functions?
And what code exactly would I need to insert or modify.
Am completely new to this, have no idea how to edit functions.
Hi,
add the following code to your child theme's functions.php:
function no_blogdescription() {
remove_action('thematic_header','thematic_blogdescription',5);
}
add_action('init', 'no_blogdescription');
Chris
You must log in to post.