mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 01:39:37 +01:00
e8f22c65a2
git-svn-id: http://svn.automattic.com/wordpress/trunk@1664 1a063a9b-81f0-0310-95a4-ce76da25c4cd
22 lines
527 B
PHP
22 lines
527 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 . 'template-functions-comment.php');
|
|
|
|
?>
|