如果标题留空,我试图隐藏 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>'
}
?>