Search This Blog

Mind freaker Stuff

Please Visit my new blog http://www.mindfreakerstuff.com for new articles related to web and mobile designing.

Sunday, December 11, 2011

Get Current theme Image folder ULR : WordPress



To Get Image Folder URL In WordPress
The bloginfo(‘template_directory’) function will return the current theme path. We just need to append image folder name  and Image name to it. 
<img src="<?php bloginfo('template_directory'); ?>/images/myImage.jpg" title="" alt="" />
U cab Also Get Home Page url from 
<?php echo home_url(); ?>
Cheers...