Hello,
I have some problems with the dates on the homepage. All the date are same ... the one of the last post. But when I click on a post the date is correct.
Can you tell me where in the code i have to go to fix this ???
Thanks
// post_date
if($this->wdgt_config['data_source_type'] == 'post' || $this->wdgt_config['data_source_type'] == 'custom') {
$article_date = $this->wdgt_results[0][$i]->post_date;
} else {
$article_date = $this->wdgt_results[$i]->post_date;
}
// post_date
if($this->wdgt_config['data_source_type'] == 'post' || $this->wdgt_config['data_source_type'] == 'custom') {
$article_date = $this->wdgt_results[0][$i]->post_date;
$art_ID = $this->wdgt_results[0][$i]->ID;
} else {
$article_date = $this->wdgt_results[$i]->post_date;
$art_ID = $this->wdgt_results[$i]->ID;
}