• On my main page the titles of my blog entries are hyperlinked and the link goes to the individual page for the entry, which I like.

    However, on the page that displays the individual blog entry the title is also hyperlinked, linking to the same page.

    Is there a way to keep the hyperlinked title on the main page, but have the title on the individual post page be non-hyperlinked?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Does your theme have a single.php file?

    If not, create one by copying the theme’s index.php. Then edit it and look for something similar to this (example is from the Default theme):

    <h2><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>

    Change it to:

    <h2><?php the_title(); ?></h2>

    Thread Starter austinandrew

    (@austinandrew)

    that worked, thanks!

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