Hi.
I want to use image file instead of "read more..."text.
How can I use it.. How I must modify following code..
<?php the_content("Continue reading ".the_title('', '', false)."..."); ?>
Thank you.
Hi.
I want to use image file instead of "read more..."text.
How can I use it.. How I must modify following code..
<?php the_content("Continue reading ".the_title('', '', false)."..."); ?>
Thank you.
I quick peek at the code and it's simply doing a:
$output .= ' <a href="'. get_permalink() . "#more-$id\">$more_link_text</a>";
So you should be able to do something like:
<?php the_content('<img src="my_more.png"/>'); ?>
Thank you..
one more question..
Now How can I input the themplates_directory url =
<?php bloginfo('template_directory'); ?>
in <img src="my_more.png"/>
it is not working.
<img src="<?php bloginfo('template_directory'); ?>/my_more.png"/>
You can try:
<?php the_content('<img src="'.bloginfo('template_directory').'/my_more.png"/>'); ?>
This topic has been closed to new replies.