The following bit of code results in a duplicate attribute site validation error.

This template script:

<div class="clearfix" <?php post_class() ?>>

produces this source output:

<div class="clearfix" class="post-263 post type-post status-publish format-st…

WordPress adds its own post-related classes to format the blog entry. Is there any way I can add my "clearfix" class to the template without producing the duplicate attributes?

Thanks.

link|improve this question

55% accept rate
feedback

1 Answer

up vote 6 down vote accepted

Simple fix:

<div <?php post_class("clearfix"); ?>>

See post_class() for more details

link|improve this answer
Thank you, Brady! – user5486 May 19 '11 at 6:10
Your welcome. Don't forget to mark the answer as answered if this is the correct answer. – Brady May 24 '11 at 10:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.