2011-02-06, 02:07:52
Oleg06 Wrote:send me the complete code, which I will put on the news page, to display the calendar in the format dd / mm / year, to be displayed on the page 3 news and a pagination
assuming your tag for news is 'news' and you want to see the complete news content (last parameter -1), with date and time (without time use just 'd/m/Y', other formats see http://php.net/manual/de/function.date.php):
Code:
<?php
set_i18n_search_texts('Search', 'No news found', 'd/m/Y H:i');
get_i18n_search_results('news', null, null, 3, -1);
?>