Skip to content

Instantly share code, notes, and snippets.

@smjuber
Forked from richtabor/wordpress-file-paths.php
Created March 5, 2019 15:56
Show Gist options
  • Save smjuber/b7b363590fdc0a3aa419f7e87fd03c58 to your computer and use it in GitHub Desktop.
Save smjuber/b7b363590fdc0a3aa419f7e87fd03c58 to your computer and use it in GitHub Desktop.
File path for a pre WordPress 4.7 asset:
<img src="<?php echo get_template_directory_uri(); ?>/images/filename.png" />
File path for a WordPress 4.7 + asset:
<img src="<?php echo get_theme_file_uri( ‘/images/filename.png’ ); ?>" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment