• Hey, I installed the Headline Images plugin recently. However, only the title of the About, Contact, etc. pages becomes images. I was wondering if there is a way to make each blog title an image as well. Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • Make sure that you have both parts of the code changed.

    So, for example:
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>

    becomes:
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title('-image-'); ?>"><?php the_title('-image-'); ?></a>

    Notice how there are two instances of
    the_title();

    You could also try my reworking of it: TTFTitles.

    There is also a link to it from ColdForged’s page.

    In any case, good luck!

    -John.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Coldforged Headline Images’ is closed to new replies.