• There’s information on how to configure this plugin in the FAQ. However, it only explains how to get the plugin working on the back end of the site. You will have to query the post metadata or create your own function in the functions.php file to fix this problem.

    Hopefully the author updates his documentation because it is a good plugin.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter invot

    (@invot)

    Add this function to your functions.php file:

    function get_reverse($id) {
    	$meta = get_post_meta( $id );
    	$wtf = $meta['mfi-reloaded-images'][0]; // This is why we can't have nice things.
    	$wtfArr = explode('"', $wtf );
    	$tid = $wtfArr[3];
    	$src = wp_get_attachment_image_src($tid, 'full');
    	return $src[0];
    }

    Then just use get_reverse( $id ) and you’ll get the image on your site.

    Plugin Author nickohrn

    (@nickohrn)

    @invot – thanks for your comments. I’ll see what I can do about updating the documentation sometime soon.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘No documentation on how to insert custom image into template’ is closed to new replies.