• Hi everyone, I have a basic theme which I would like to show all the contents of the post in the blog section and not have any click through to the single post/comment.

    Most of the posts will be short, so its not worth having another click to basically show the same thing.

    Is this possible in the back end as a basic feature to turn off, without going into the code?

    thanks

    lister

Viewing 1 replies (of 1 total)
  • I don’t think it’s available “as a basic feature to turn off” but you could edit the post title link out of your theme’s archive.php.

    The code should read something like this:

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

    change it to:

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

Viewing 1 replies (of 1 total)
  • The topic ‘disable permalink or other link to single post’ is closed to new replies.