I have a plugin that creates a custom post type called popup. But it does not add Featured Image metadata on the edit page. I can enter the plugin and add it like this.
'supports' => apply_filters( 'popmake_popup_supports', array( 'title', 'editor', 'revisions', 'author', 'thumbnail' ) ),
This works until the plugin is updated. In my topic, I added the following:
add_theme_support('post-thumbnails', array('post', 'page', 'popup'));
But this does not mean that Meta-Box is a type of user publication.
Question: Can I add this function outside of my plugin, maybe in my functions.php file, so I can update the plugin?
EDIT: The
use of the free Advanced User Fields plugin has ended , allowing more than one image to be added. http://www.advancedcustomfields.com/
source
share