I am trying to code in more consistent manner and would like to know what is the difference between WP: template_directory vs TEMPLATEPATH.
Leave a Reply
You must be logged in to post a comment.
I am trying to code in more consistent manner and would like to know what is the difference between WP: template_directory vs TEMPLATEPATH.
You must be logged in to post a comment.
@tanktery
template_directory
is the URL of the active theme’s directory. Before version 2.6 of WordPress it was a local path.TEMPLATEPATH
is also the URL of the active theme’s directory.Before version 2.6
TEMPLATEPATH
was used but now it is recommended to use<?php bloginfo('template_directory'); ?>
.Hope this helps!