skip to Main Content

Enable The Image Gallery For Custom Post Types

add_filter( 'wpex_gallery_metabox_post_types', function( $types ) {
	$types[] = 'your_post_type';
	return $types;
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend Code Snippets)
Back To Top