Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: topic.php so first post has unique css

quick function to check first post – reference that within the topic loop

function my_forum_is_first_post() {
global $topic_template;

if ( $topic_template->post->post_position == 1 )
return true;

return false;
}

Skip to toolbar