doozy1117
Member
Posted 1 year ago #
I am using WP Framework and am trying to use an image as the "read more" link.
I have the code, but do not know where to place it.
This is the code I have:
<?php the_content('Read more...<img src="' . bloginfo('template_directory'). '/images/leaf.gif" alt="read more" title="Read more..." />'); ?>
Thank you!
<?php
$img = '<img src="' . bloginfo('template_directory'). '/images/leaf.gif" alt="read more" title="Read more..." />';
the_content($img);
?>
or
<?php the_excerpt();
echo '<img src="' . bloginfo('template_directory'). '/images/leaf.gif" alt="read more" title="Read more..." />';
?>