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
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
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.
This topic has been closed to new replies.