Calling an image within the theme folder from inside a post/page?
I realize that this was posted about 7 months ago, but in case you’re still looking for a solution to this, add this to your functions.php file: /** * Add a shortcode for the current theme directory * @return string Current theme directory */ function yourtheme_get_theme_directory_uri() { return get_template_directory_uri(); } add_shortcode( ‘themeuri’, ‘yourtheme_get_theme_directory_uri’ ); Then … Read more