Skip to content

Instantly share code, notes, and snippets.

@stephenbelyea
Created November 16, 2015 14:44
Show Gist options
  • Save stephenbelyea/97d5b1f7f07a33606aa3 to your computer and use it in GitHub Desktop.
Save stephenbelyea/97d5b1f7f07a33606aa3 to your computer and use it in GitHub Desktop.
WP Theme Directory Shortcode
// Drop this in theme's functions.php file.
// Use shortcode [path_theme] from visual editor.
function custom_shortcode_path_theme( $atts ){
return get_stylesheet_directory_uri();
}
add_shortcode( 'path_theme', 'custom_shortcode_path_theme' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment