mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
7f98c031a7
git-svn-id: http://svn.automattic.com/wordpress/trunk@2068 1a063a9b-81f0-0310-95a4-ce76da25c4cd
24 lines
561 B
PHP
24 lines
561 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');
|
|
|
|
require($curpath . 'feed-functions.php');
|
|
|
|
?>
|