What is the difference between WP: template_directory vs TEMPLATEPATH

@tanktery

template_directory is the URL of the active theme’s directory. Before version 2.6 of WordPress it was a local path.

TEMPLATEPATHis 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!

Leave a Comment