Skip to content

Instantly share code, notes, and snippets.

@peb7268
Created May 29, 2013 00:11
Show Gist options
  • Save peb7268/5667088 to your computer and use it in GitHub Desktop.
Save peb7268/5667088 to your computer and use it in GitHub Desktop.
WordPress: get theme directory in content editor - Shortcode
function get_theme_dir(){
$dir = get_bloginfo('stylesheet_directory');
return $dir;
}
add_shortcode('get_theme_dir', 'get_theme_dir');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment