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...