I know there's Wordpress StackExchange, but that's more PHP related question.

I'm writing my own shortcode for Wordpress it looks like:

function myShortcode_shortcode() {

    return 'something';

}

This shortcode displays simple string "something".

The problem is I want to display an image from template directory:

 <img src="<?php bloginfo('template_directory') ?>/images/myImage.jpg" alt="" />  

And I don't know how?

When I do:

return '<img src="'. bloginfo('template_directory') .'/images/myImage.jpg" alt="" />';

Script is echoing template directory instead of image.

Any ideas?

link|improve this question

73% accept rate
What does the "shortcode" part have to do with the "template directory" part? – Unicron Mar 22 '11 at 12:25
feedback

2 Answers

The problem is that the bloginfo() function is an output function (intended for templates). You need get_bloginfo() rather.

link|improve this answer
feedback

You probly need to place <img src="<?php bloginfo('template_directory') ?>/images/myImage.jpg" alt="" /> in his own variable like

function shortcode(){ 
$shortcode = "<img src='". bloginfo('template_directory') ."/images/myImage.jpg' alt="" />"
return $shortcode;
} 

Hope this helps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.