• I have a few images that I want to have on my theme that aren’t background images but I can’t figure out how to actually link them to the page. I’ve tried numerous different ways but for some reason the images won’t show up. I have all of these images stored within a folder called “images” under my own theme’s folder along with my index.php and style.css. My website is filmonfire.net in case anyone wants to see my code.

Viewing 1 replies (of 1 total)
  • Use get_stylesheet_directory_uri(). This will return the full uri of the image. I included an example below.

    <image src="<?php echo get_stylesheet_directory_uri(); ?>/images/example.jpg">

Viewing 1 replies (of 1 total)
  • The topic ‘Can't link images to theme’ is closed to new replies.