Hola,
¿ Sabes si la plantilla que estás usando tiene el archivo
functions.php ? Si lo tiene, inserta este código (puede ser al final) :
Código PHP:
Ver originalfunction title_prefix($content)
{
if ( ! in_the_loop() )
return $content;
$antetitulo = get_post_meta($post->ID , 'antetitulo' , true);
if ( $antetitulo )
return "$antetitulo $content";
return $content;
}
add_filter('the_title', 'title_prefix', 10, 1 );
De esta forma, no tienes que modificar el resto de plantillas, con cada llamada a the_title() se agregará el prefijo si el post tiene el
custom field 'antetitulo'.