Hi there,
the theme doesn’t do anything fancy with the Title tag, it simply uses the core wp_title function, which by default will output the content title / site title.
Most SEO plugins offer a title meta field that allow you to change the the title tag.
Or you can create a WP Custom Field to store the value and use this filter to output it to the title tag:
function db_custom_page_title( $title , $separator) {
if( is_single() ){
$custom_page_title = get_post_meta( get_the_ID(),'add_your_meta_key', true);
if( $custom_page_title ){
$title = $custom_page_title;
}
}
return $title;
}
add_filter( 'wp_title', 'db_custom_page_title', 10 , 2 );
You need to change add_your_meta_key
to your Custom Field name.
This way you can keep your Content Title as is, and the Featured Image can be displayed below the Title automatically.