Is there any way to remove the link from the title of posts? Muuuccch appreciated if you can :)
xxx
Is there any way to remove the link from the title of posts? Muuuccch appreciated if you can :)
xxx
Go to your templates index.php file and find the following line
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a><h2>
(or a line similar to this (this is the default theme))
Just delete everything except
<h2><?php the_title(); ?></h2>
Do the same thing in page.php, single.php etc.
This topic has been closed to new replies.