WordPress1.286 で、特定の使用条件でタイトルが表示されないバグがありました
QuickFix
functions.php line:4448
if ( empty( $title ) || preg_match('!><!', $title ) ) {
上記コード部分を以下に変更してください
$striped_title = wp_kses( $title,array()); if ( empty( $title ) || empty( $striped_title ) ) {
このバグは、次回のアップデートで修正予定です
Raindrops1.286 has bug
Bug title in the specific conditions of use can not be displayed
When using featured image settings.
Quickfix see below
Posts Titles disappeared since upgrade to WP-4.2