我的 wordpress 循环中有以下代码来显示粘性帖子:
<div class="blogpost">
<?php // div class for styling sticky posts on main page. ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt(); // Show summary of posts only. ?>
</div> <!-- end class sticky -->
</div> <!-- end class blogpost -->
我想用 CSS 为 h2 设置样式,但我无权访问它。当我查看 firebug 中的代码时,它看起来像这样:
<div class="blogpost">
<div id="post-324" class="post-324 post type-post status-publish format-standard sticky hentry category-uncategorized" <h2="">
<a href="http://mydomain.com/wordpress/?p=324">Headline of post </a>
...
</div>
</div>
有谁知道我必须改变什么才能让我的标题 h2 变成 a?谢谢!