• Does anyone know if its possible to remove the permalink from headings. I want to keep the heading but I don’t want it to have a permalink in essence making it unclickable to prevent redirection. I use the atahualpa theme if anyone needs to know.

    I’ve looked all over but haven’t found an answer yet. Thanks in advance.

Viewing 1 replies (of 1 total)
  • Why not just edit the theme to remove the link?

    I’m not familiar with your theme, but mine has code like this for the title on the single.php page:
    <h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>

    To do what you want, I’d just remove the link bits leaving me with:

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

Viewing 1 replies (of 1 total)
  • The topic ‘Heading/Permalink’ is closed to new replies.