Añadimos código a functions.php del tema hijo:
//Añadir título si está vacío add_filter('wp_title', 'titulovacio', 9999); function titulovacio($titulo){ if(isset($titulo)){ if($titulo === ''){ return get_the_title(get_the_ID()); }else{ return $titulo; } } };