• Resolved dtarver

    (@dtarver)


    Hello

    How do I turn off the linking in a post title please?
    If you visit (IT IS UNDER DEVELOPMENT SO DON’T ORDER) https://www.createandmanageschedules.com/coaching/ and roll over the title “Welcome to Create And Manage Schedules Exclusive Video Coaching!” it highlights. I commented out the code but when people click on the title it reloads a page.

    I prefer to prevent the title linking on all posts. How do I do that please?

    Thank you,
    Dora

Viewing 2 replies - 1 through 2 (of 2 total)
  • In the WordPress Default theme’s wp-content/themes/default/index.php that ‘linking’ is caused by code like this:

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

    so you would change that to:

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

    So look for something like that in your theme’s index.php file

    Thread Starter dtarver

    (@dtarver)

    Thank you Michael! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘how to turn off the linking in a post title…’ is closed to new replies.