Viewing 6 replies - 1 through 6 (of 6 total)
  • <h2>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></h2>

    is this what you mean?

    Thread Starter Listic

    (@listic)

    Ohhh sorry

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

    Just tried replasing both simular lines in index.php and page.php to:
    <h2><?php the_title(); ?></h2>

    But I see no changes at all..!!

    Did you force a refresh when you where viewing you blog, hitting CTRL + F5 will force a refresh in Firefox and IE.

    What you did is correct. Did you refresh your browser screen several times, to force the page to be downloaded from the server again? Also, you need to make that change in single.php, archive.php. and category.php

    Thread Starter Listic

    (@listic)

    Ohhhh had to make the same change to home.php
    so now it works..
    Thanks for your time

    Jose B

    (@linkaq)

    Okay, okay, okay! I think I fianlly found the right post. I want to remove the “Permanent Link” part of the title, but I still want the name of my post to work as a link. How do I do this?

    This is what the code in my index.php file looks like:

    <h2 class="some-class">
    <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>">
    <?php the_title(); ?>
    </a>
    </h2>

    I really appreciate the help dudes.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Removing permanent link from the posts titels’ is closed to new replies.