Is there a way to have always the the_title(); tag also includes a custom field called subtitle?
I want to have a title like this: "subtitle-custom-fild: Posttitle"
Like "Cool: The new TV show from Werner Herzog."
in this case, cool would be the custom field value, and "the new TV...." would be the_title().
I am getting this at the moment with the following code:
<h1><?php $values = get_post_custom_values("myCustomField"); echo $values[0]; ?>: <?php the_title(); ?>"><?php $values = get_post_custom_values("myCustomField"); echo $values[0]; ?>
<p><?php the_title(); ?></p></h1>
The Problem is, that google indexes the posts sometimes with the custom field in title, sometimes without it - which in some cases makes no sense. I also gave all possible "title tags" the complete title the same way in the "title=" attribute....
Is there any way to tell wordpress - if theres a custom field subtext - print it always in front of the post_title?
Thank you!
AD
