نمایش اخبار:
<?PHP include("path/to/show_news.php");
?>
نمایش با یک قالب متفاوت:
<?PHP $template = "YOUR_TEMPLATE_NAME"; include("path/to/show_news.php");
?>
نمایش آرشیوها:
<?PHP include("path/to/show_archives.php");
?>
نمایش آخرین 5 خبر:
<?PHP
$number = "5";
include("path/to/show_news.php");
?>
نمایش آخرین 5 خبر از دسته 2:
<?PHP
$number = "5";
$category = "2";
include("path/to/show_news.php");
?>
نمایش همه تیتر اخبار و آخرین یک خبر در یک صفحه:
<?PHP
$static = TRUE;
$template = "Headlines";
include("path/to/show_news.php");
$number = "1";
include("path/to/show_news.php");
?>
|