• Resolved Anonymous User 15385777

    (@anonymized-15385777)


    Plugin is great but it just uses the first image from a post and not the post image itself. Is it possible to change this?

Viewing 5 replies - 1 through 5 (of 5 total)
  • 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.
Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Plugin only uses first image from post’ is closed to new replies.