Files
wordpress-develop/wp-includes/template-functions.php
Ryan Boren 59c3fe5b65 Fix include of comment-functions.php. Bug 554.
git-svn-id: https://develop.svn.wordpress.org/trunk@1967 602fd350-edb4-49c9-b593-d223f7449a82
2004-12-16 23:18:15 +00:00

22 lines
518 B
PHP

<?php
$curpath = dirname(__FILE__).'/';
/***** About-the-blog tags *****/
require($curpath . 'template-functions-general.php');
/***** Links *****/
require($curpath . 'template-functions-links.php');
/***** Author tags *****/
require($curpath . 'template-functions-author.php');
/***** Post tags *****/
require($curpath . 'template-functions-post.php');
/***** Category tags *****/
require($curpath . 'template-functions-category.php');
/***** Comment tags *****/
require($curpath . 'comment-functions.php');
?>