• I recently got my site approved for Google News, but was told

    In order for Google News to include your content, each headline must hyperlink to a page dedicated solely to that article, as your site does. However, when the headline on this page is an active link, we often have difficulty displaying it correctly. For example, the headline [[Bradley’s Contract Extended]] is an active hyperlink on this page: [[http://nesoccertoday.com/?p=101]].

    Making these headlines regular text, not links, will increase the likelihood that our crawler will extract the correct headlines.

    Is there anyway to make the titles not an active link?

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • On single.php, and maybe page.php, your titles seem to be links to themselves. This is needed of course, on index.php as that is how you get to see the full article single view. But on single and page maybe look for something like:

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

    Could become

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

    Of course, make backups before messing with anything!

    Thread Starter nesoccertoday

    (@nesoccertoday)

    Do you mean in single.php for the current theme? I can’t seem to find anything related to the title in single.php in the arras theme.

    Thread Starter nesoccertoday

    (@nesoccertoday)

    Anyone?

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Hyperlink Headlines’ is closed to new replies.