I'm using the sideposts plug-inbut I want the title instead of displaying text, to be an image.
So I either need to get the following code (img tag containing php)...
<img src="<?php bloginfo('template_directory'); ?>/images/title.gif" />
inside of this code in widgets.php of the sideposts plugin, in order to replace the_title with an image.
echo ''. get_the_title() .'';
If there was some way of making the title accept php code, that would also solve the problem, but I am not sure how to do that.