Definition:
function get_template_directory() {}
Retrieve current theme directory.
Return values
returns:Template directory path.
Defined filters
- template_directory
apply_filters( 'template_directory', $template_dir, $template, $theme_root )
Source code
function get_template_directory() {
$template = get_template();
$theme_root = get_theme_root( $template );
$template_dir = "$theme_root/$template";
return apply_filters( 'template_directory', $template_dir, $template, $theme_root );
}
1739

February 12, 2011 


No comments yet... Be the first to leave a reply!