Hello!
In my homepage I use this bfthumbs shortcode:
[bfthumbs showposts="9" width="230" height="210" numcols="3" marginright="10" meta="true"]
To show, first of all, the sticked posts, i have modified this file: bigfeature/library/functions/shortcodes.php
I have replaced this line:
$args = array('ignore_sticky_posts' => 1, 'post_status' => $post_status, 'orderby' => $orderby, 'order' => $order);
with this one:
$args = array('ignore_sticky_posts' => 0, 'post_status' => $post_status, 'orderby' => $orderby, 'order' => $order);
setting ignore_sticky_posts to zero.
It works but, now, if the sticked posts are not in the first page, I see more than $showposts thumbnails in my homepage.
I suppose it is because the sticky posts are not calculated in the total. :(
Can you suggest me a fix?
Thanks in advance!