Hello!
Is it possible to skip first several items in the search results?
So, lets say I want to call two news items somewhere on the page by setting "max=>2" and in some other place I need to call next three news items... is there a parameter which can "skip" the first two news items, when I call them second time?
this is the type of code I'm using to call news:
I hope I could explain the idea.. Thank you!
Is it possible to skip first several items in the search results?
So, lets say I want to call two news items somewhere on the page by setting "max=>2" and in some other place I need to call next three news items... is there a parameter which can "skip" the first two news items, when I call them second time?
this is the type of code I'm using to call news:
Code:
<?php get_i18n_search_results(array('tags'=>'news', 'DATE_FORMAT'=>'%d %B, %Y', 'max'=>2, 'i18n'=>0, 'lang'=>'ru', 'numWords'=>'1p', 'order'=>'created', 'showPaging'=>0, 'HEADER'=>'')); ?>
I hope I could explain the idea.. Thank you!