• Hi,

    I’m trying to impliment a jQuery plugin that allows users to scroll incrementally to a defined class. I would like to add the same class, say “.scroll”, to each post title on my front page.

    Here is my <h2> tag :
    <h2 class="header-wrap"><a id="scroll" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>

    The class needs to be the same for every post. Any suggestions?

Viewing 1 replies (of 1 total)
  • Your post headers look like they already have the class header-wrap. You could use that. If you want to add an additional “scroll” class it would look like this:

    <h2 class="header-wrap scroll">
Viewing 1 replies (of 1 total)
  • The topic ‘Add class to post titles.’ is closed to new replies.