スティッキー投稿を表示するために、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 にするために何を変更する必要があるか知っている人はいますか? ありがとう!