Integration with FIFU plugin
-
Hey, guys!
This is Marcel, Featured Image from URL (FIFU) developer. FIFU basically allows to use external featured images in WordPress post types.
Today a Feedzy user asked me to integrate that with FIFU because he doesn’t want the images in the media library. Fortunately that’s pretty easy thing using this integration function
fifu_dev_set_image($post_id, $image_url)So editing the file feedzy-rss-feeds/includes/admin/feedzy-rss-feeds-import.php and adding this code it would be enough to set the external image as the featured image of a post.
1305 if (!empty($item['item_img_path'])) { 1306 if (is_plugin_active('featured-image-from-url/featured-image-from-url.php') || is_plugin_active('fifu-premium/fifu-premium.php')) { 1307 fifu_dev_set_image($new_post_id, $item['item_img_path']); 1308 } 1309 }Of course that’s just a quick integration. I don’t know all details about Feedzy, so only you are able to create the perfect code for that. I’m just saying that the integration is possible and it could be a good opportunity to get more users. Please let me know if it’s something that could be done or if you have any questions.
Thanks!
The page I need help with: [log in to see the link]
The topic ‘Integration with FIFU plugin’ is closed to new replies.