At the moment no. We’ll fix that in the next version.
@webfactory when is this going to happen? This plugin is really one of the best when it comes to customizability but missing the featured image as an option is keeping me from using it.
Sorry, we can’t give you any dates. This is a free plugin developed as resources permit.
I understand. If you consider going really open source (by hosting a GitHub repo or so) I’d make a pull request and add the feature myself 🙂
Try this in output_tags.php for {featuredimg}
function otf_featuredimg($option_key, $result, $ext) {
$fimage = wp_get_attachment_image_src( get_post_thumbnail_id($result), ‘thumbnail’ );
$imgtag=’Ximg src=”‘.$fimage[0].'” /Y’;
return $imgtag;
}
Replace X and Y with less than and greater than signs.
-
This reply was modified 8 years, 1 month ago by
danny852.
-
This reply was modified 8 years, 1 month ago by
danny852.