• Hello there. I think I might be missing something, but I’m struggling to resize the image to the size i want.

    I’ve replaced the ‘full’ text with different size formats but it’s not working.

    If i want the featured image to be 160px x 200px, where in the code below do i put this?

    Sorry to ask a silly question, but I just can’t figure it out!

    <?php if( class_exists( 'kdMultipleFeaturedImages' ) ) {
        									kd_mfi_the_featured_image( 'featured-image-video', 'post', 'full'); } ?>

    http://wordpress.org/extend/plugins/multiple-featured-images/

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can use this ->
    echo kd_mfi_get_featured_image_url( 'featured-image-1', 'post', array(400,400) );

    post = Your postype

    dennis answer didn’t work for me.

    but in functions.php define your image size:

    add_image_size( 'img_160_200', 160, 200, true );

    then to output:

    kd_mfi_the_featured_image( 'featured-image-2', 'post', 'img_160_200' );

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Multiple Featured Images] Can't resize featured image’ is closed to new replies.