I wish to add a div class INSIDE of this echo:
<?php echo get_image(); ?>
Not sure what I am doing wrong. The div class must be inside (wrapper is no good). Any suggestions?
Here are some examples of what I've tried (none work):
<?php echo '<div class=mydiv>' get_image(); ? '</div>'>
<?php echo '<div class=mydiv>' .get_image();. '</div>' ?>
Thank you!
get_image()returns a stringable result too, even though I am guessing it does in this context.