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 に答える