タイトルが空白のままの場合、 WordPress のthe_title
h2 タグを非表示にしようとしています。それ以外の場合は、タイトルまたは通常の順序で表示されます。これをコーディングする最初の試みは次のとおりです。
<?php if '' == the_title() {'test'}
else {
'<h2><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>'
}
?>