Hi,
I'm afrad that the offset doesn't work with custom post types - only posts.
Try to edit Msocial/gavern/widgets.grid.titleoverlay.php file and change this fragment:
- Code: Select all
} else if($config['data_source_type'] == 'custom') {
$post_type = explode(',', $config['data_source']);
array_push($results, get_posts(array('post_type' => $post_type, 'numberposts' => $amount_of_posts)));
}
into:
- Code: Select all
} else if($config['data_source_type'] == 'custom') {
$post_type = explode(',', $config['data_source']);
array_push($results, get_posts(array(
'post_type' => $post_type,
'numberposts' => $amount_of_posts),
'offset' => $config['offset']
));
}