Is it possible to have the site title prepended before each post title, separated by a hyphen? For example:
[my site title] - [my post title]
Is it possible to have the site title prepended before each post title, separated by a hyphen? For example:
[my site title] - [my post title]
function prepend_site_name($title) {
return get_bloginfo('name').' - '.$title;
}
add_filter('the_title','prepend_site_name');
Like that?