• Right now on my blog on the posts the titles aren’t linkable, I was wondering how I make the titles of the posts on the front page link to their perma-link.

    Here is what is on the front page
    <h2><?php the_title(); ?></h2>

Viewing 2 replies - 1 through 2 (of 2 total)
  • <!– Display the Title as a link to the Post’s permalink. –>
    <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>

    Reference

    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Title Linking’ is closed to new replies.