• Resolved daughtkom

    (@daughtkom)


    It would be nice to have some additional options related to featured images. For example:

    • Option to allow featured images to be treated separately from content images, such as ability to put featured image credits at the end, but keep content image credits with the image.
    • Option to allow changing text from “Image courtesy” to “Featured image courtesy” or whatever
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author pepe

    (@pputzer)

    Thanks for your suggestions, @daughtkom. I’m not sure that duplicating all the options for featured images is a good idea as it would make the interface way more cluttered.

    However, you can already achieve this by integrating Media Credit with your theme’s templates. You can use code like this to add the featured image credit at the end of the your posts:

    $include_default_credit = empty( $options['no_default_credit'] );
    $post_thumbnail_id = get_post_thumbnail_id();
    if ( '' !== $post_thumbnail_id ) {
    	$credit = Media_Credit_Template_Tags::get_media_credit_html( $post_thumbnail_id, $include_default_credit );
    	echo '<div class="media-credit-end">Featured image courtesy of ' . $credit . '</div>';
    }

    If you do this, automatic featured image handling should be disabled in the Media settings.

    Plugin Author pepe

    (@pputzer)

    @daughtkom, have you been able to work around the issue with my suggestion?

    Plugin Author pepe

    (@pputzer)

    I assume the issue has been resolved.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Suggestions: featured image options’ is closed to new replies.