Dieses Plugin ist nicht mit den jüngsten 3 Hauptversionen von WordPress getestet worden. Es wird möglicherweise nicht mehr gewartet oder unterstützt und kann Kompatibilitätsprobleme haben, wenn es mit neueren Versionen von WordPress verwendet wird.

Multiple Featured Images

Beschreibung

You need more than one featured image for posts, pages and/or custom post types? Then this plugin is for you!

Enable multiple featured images for all post types (including custom post types and WooCommerce products) and show the images with a widget or the handy shortcode.

Funktionen

  • Add as many featured images as you need.

  • Add the featured images to any post type (post, page or even custom post types and WooCommerce products).

  • It is possible to use different featured images for different post types. Easily you can add two new featured images to pages and three to posts, if you need it that way.

  • Fully customizable output – so it’s multilingual.

  • Handy shortcode for displaying the featured images everywhere.

  • Widget for displaying featured images in sidebars, etc.

History

For one of my customers I had to assign two featured images to pages. One featured image was used as the header image and the other as a small button for the submenu. The images had to be different too (so I couldn’t simply use different images sizes) and so I wrote this little plugin.

IMPORTANT NOTE TO THOSE UPDATING FROM 0.3: The Plugin comes with a new method for registering featured images and updates the post meta key. It is fully backwards compatible, but if you are calling the post metas directly then please update your code accordingly. The new format of the post meta key is kdmfi_YOUR_ID.

Contribute

Feel free to ask if you have problems with this plugin. But please keep in mind, that this plugin is developed in the author’s spare time – so it may take some time to answer.
Feature requests are welcome too!

Screenshots

  • Admin meta box with multiple featured images.
  • Media uploader.
  • Multiple Featured Images Widget

Installation

  1. Unzip and upload the multiple-featured-images directory to the plugin directory (/wp-content/plugins/)

  2. Aktiviere das Plugin im „Plugins“-Menü in WordPress

  3. For registration of a new featured image please use the handy filter:

    add_filter( 'kdmfi_featured_images', function( $featured_images ) {
      $args = array(
        'id' => 'featured-image-2',
        'desc' => 'Your description here.',
        'label_name' => 'Featured Image 2',
        'label_set' => 'Set featured image 2',
        'label_remove' => 'Remove featured image 2',
        'label_use' => 'Set featured image 2',
        'post_type' => array( 'page' ),
      );
    
      $featured_images[] = $args;
    
      return $featured_images;
    });
    
  4. Display the featured image in your theme (e.g. in header.php or single.php):

    kdmfi_the_featured_image( 'featured-image-2', 'full' );
    

FAQ

How do I register multiple new featured images?

Use the handy filter to add multiple featured images.

For expample, this code adds two additional featured images to pages and one additional featured image to posts:

add_filter( 'kdmfi_featured_images', function( $featured_images ) {
  // Add featured-image-2 to pages and posts
  $args_1 = array(
    'id' => 'featured-image-2',
    'desc' => 'Your description here.',
    'label_name' => 'Featured Image 2',
    'label_set' => 'Set featured image 2',
    'label_remove' => 'Remove featured image 2',
    'label_use' => 'Set featured image 2',
    'post_type' => array( 'page', 'post' ),
  );

  // Add featured-image-2 to pages only
  $args_2 = array(
    'id' => 'featured-image-3',
    'desc' => 'Your description here.',
    'label_name' => 'Featured Image 3',
    'label_set' => 'Set featured image 3',
    'label_remove' => 'Remove featured image 3',
    'label_use' => 'Set featured image 3',
    'post_type' => array( 'page' ),
  );

  // Add the featured images to the array, so that you are not overwriting images that maybe are created in other filter calls
  $featured_images[] = $args_1;
  $featured_images[] = $args_2;

  // Important! Return all featured images
  return $featured_images;
});

How do I register additional featured images for WooCommerce?

The post type of WooCommerce products is „procut“. So you are able to define multiple featured images as seen above, just add „product“ to „post_type“.

Let’s say you want to add a detail image to WooCommerce products. Then this code is for you:

add_filter( 'kdmfi_featured_images', function( $featured_images ) {
    $args = array(
            'id' => 'product-image-detail',
            'desc' => 'The detail image of the product.',
            'label_name' => 'Product detail image',
            'label_set' => 'Set product detail image',
            'label_remove' => 'Remove product detail image',
            'label_use' => 'Set product detail image',
            'post_type' => array( 'product' ),
    );

    $featured_images[] = $args;

    return $featured_images;
});

Now you are able to display the image via shortcode, widget or by including a display function (seen below) in your WooCommerce theme files.

How do I display the featured image?

Use one of the functions for retrieving the image. E.g. kdmfi_the_featured_image( ‚featured-image-2‘, ‚full‘); or use the new widget „Multiple featured images“ or the new shortcode!
The widget can be found under Appearance -> Widgets.

How do I use the shortcode?

Shortcode usage:

[kdmfi_featured_image id=“featured-image-2″ size=“full“]

Possible attributes for the shortcode:

  • id: the id of the featured image, e.g. featured-image-2, requried
  • size: the desired size, defaults to „full“
  • post_id: the ID of the post to which the featured image is assigned, defaults to the current ID
  • class: the classes for the image tag, defaults to „kdmfi-featured-image“
  • alt: the alt attribute for the image tag, defaults to the title of the used image
  • title: the title attribute for the image tag, empty by default

Filter

If you need to change the image tag created by the shortcode, please use the filter „kdmfi_shortcode_html“.

Example use:

add_filter( 'kdmfi_shortcode_html', function( $html, $shortcode_atts, $post_id) {

  // do something

  return $html;
}, 10, 3);

The filter callback gets the image tag html, the used shortcode attributes and the ID of the post where the shortcode is used.

How do I use a different size of the featured image?

Simply add the size to the function call:

kdmfi_the_featured_image( 'featured-image-2', 'full' );

You can choose every size that WordPress knows.

How can I get the ID of the featured image?

With this function call you can get the ID:

kdmfi_get_featured_image_id( 'featured-image-2' );

Note: Since a featured image has only one individual id, there is no option ’size‘ in this function call.

How can I get the URL of the featured image?

With this function call you can get the URL:

kdmfi_get_featured_image_src( 'featured-image-2', 'full' );

Which functions do exist?

  1. If you need the ID only, use this function:

    kdmfi_get_featured_image_id( $image_id, $post_id );
    

    $post_id is optional, if you leave it out, the ID of the calling post is used.

  2. To get the URL of the image:

    kdmfi_get_featured_image_src( $image_id, $size, $post_id );
    

    $post_id is optional (see above); $size is optional and defaults to ‚full‘.

  3. To get the featured image in HTML as a string:

    kdmfi_get_the_featured_image( $image_id, $size, $post_id );
    

    Again, $size and $post_id are optional.

  4. To display the featured image directly:

    kdmfi_the_featured_image( $image_id, $size, $post_id );
    

    Again, $size and $post_id are optional.

  5. To check if the post has a featured image:

    kdmfi_has_featured_image( $image_id, $post_id );
    

    $post_id is optional. The function returns the id of the attachment if there’s one and false if not.

Rezensionen

7. Januar 2021
Great tool. It would've been nice if it could support bulk upload of featured images, as a gallery (just like in woocommerce product galleries). Thanks!
21. August 2020 1 Antwort
Adds so much more flexibility for designing a post, or displaying content in different contexts (home page, single post, archive). Thank you for this great plugin!
22. November 2019
Exactly what I was looking for ! Works great with the latest version of WordPress (5.3) No need for shortcode! To obtain a featured image that loads automatically according to the language of the plugin qtranslate-x, you can add in the file functions.php: add_filter( 'kdmfi_featured_images', function( $featured_images ) { $args = array( 'id' => 'featured-image-en', 'desc' => 'English version of the feature image.', 'label_name' => 'English featured image', 'label_set' => 'Set english featured image', 'label_remove' => 'Remove english featured image', 'label_use' => 'Set english featured image', 'post_type' => array( 'page', 'post', 'portfolio', 'app' ), ); $featured_images[] = $args; return $featured_images; }); add_filter( 'get_post_metadata', 'wdm_change_featured_image', 10, 4 ); function wdm_change_featured_image( $feature_image_id = null, $post_id, $meta_key, $single ) { if ( $meta_key == '_thumbnail_id' ) { if(function_exists('qtranxf_getLanguage')) { if (qtranxf_getLanguage() == 'en' && kdmfi_has_featured_image( 'featured-image-en', $post_id )) { $feature_image_id = kdmfi_get_featured_image_id( 'featured-image-en', $post_id ); } } } return $feature_image_id; }
8. März 2018 1 Antwort
Hi, This is my first review, this plugin made me review it because it is so awesome. Makes life easier. Thank you 🙂
12. Dezember 2017 1 Antwort
I have been using this for years. I can't even begin to count how many times I've been handed a design for a theme to build where the designer had a thumbnail for one gallery, then a totally different type of thumbnail for some other section of the site. Nothing flashy here, just the perfect tool for the job. This plugin makes adding extra featured image types a breeze. It's a tool for developers, tho and not a simple plug-n-play solution. It doesn't simply add a second thumbnail to your posts, it does require some really lite code tinkering, so if you're not comfortable monkeying around in the functions file(s), this won't solve the problem for you.
Alle 28 Rezensionen lesen

Mitwirkende & Entwickler

„Multiple Featured Images“ ist Open-Source-Software. Folgende Menschen haben an diesem Plugin mitgewirkt:

Mitwirkende

„Multiple Featured Images“ wurde in 1 Sprache übersetzt. Danke an die Übersetzerinnen und Übersetzer für ihre Mitwirkung.

Übersetze „Multiple Featured Images“ in deine Sprache.

Interessiert an der Entwicklung?

Durchstöbere den Code, sieh dir das SVN Repository an oder abonniere das Entwicklungsprotokoll per RSS.

Änderungsprotokoll

0.5.0

  • Added shortcode for displaying the image
  • Changed the meta key from kdmfi to kdmfi_ to enable API access again

0.4.3

  • Backwards compatibility to PHP 5.3.10
  • Added support for translations

0.4.2

  • Bug fixes

0.4.1

  • Bug fixes

0.4.0

  • Completely rewritten; added Widget

0.3

  • Bug fix: no output of url when a size is given

0.2

  • Code completely rewritten

0.1

  • Erstveröffentlichung