0

我相信事情正在变得温暖,没有标题正确显示空白,但标题现在不是链接也不是 h2,它只是纯文本。有什么建议么?

       <?php if (the_title()) { ?>

         <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>

       <?php } else { ?><?php }; ?>
4

1 回答 1

1
<?php if (get_the_title() != "") { ?>
    <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>
<?php } ?>

应该管用。

于 2012-08-21T19:55:00.447 回答