25 lines
602 B
PHP
25 lines
602 B
PHP
<?php
|
|
$curpath = dirname(__FILE__).'/';
|
|
|
|
/***** About-the-blog tags *****/
|
|
require($curpath . 'template-functions-general.php');
|
|
|
|
/***** Links *****/
|
|
require($curpath . 'template-functions-links.php');
|
|
|
|
/**** // Geo Tags ****/
|
|
require($curpath . 'template-functions-geo.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');
|
|
|
|
?>
|