Hey man, I`m just trying to figure out what can I do in functions, to make the title in Bfthumbs appears above the image. The text is ok above the image. I just want the title.
Thanks so much.
Hey man, I`m just trying to figure out what can I do in functions, to make the title in Bfthumbs appears above the image. The text is ok above the image. I just want the title.
Thanks so much.
you can change things around in the functions.php of a child theme with the bfthumbs_content filter. Here's an example how to make the title above the image:
function bfthumbs_custom($thumbpost) {
$thumbpost['image'] = $thumbpost['title'] . $thumbpost['image'];
$thumbpost['title'] = '';
return $thumbpost;
}
add_filter('bfthumbs_content', 'bfthumbs_custom');
wow. It worked.
Thanks so much man. You are great.
You must log in to post.