这是一行:
<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>
我检查过,我看不出问题。
答案 0 :(得分:5)
<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>
答案 1 :(得分:3)
我认为它在rel="bookmark"?>"
附近。