Example: http://english.cutenews.ru/cuteru/example
Installation:
1. Upload everything to the plugins/ folder and activate the plugin.
2. Put this between the <head> tags of your news page:
- Code: Select all
<script type="text/javascript" src="<?=$config_http_script_dir; ?>/plugins/ajaxnewspagination/ajaxnewspagination.js"></script>
3. Put this above your include code:
- Code: Select all
echo '<div id="ajaxnews">';
4. Put this below your include code:
- Code: Select all
echo '</div>';
So your include code might look like this:
- Code: Select all
echo '<div id="ajaxnews">';
$number = 7;
$category = "1";
include $cutepath.'/show_news.php';
echo '</div>';

