Hi jynk,
In version 2.5.7 you will now be able to add custom post types! You can do this using a filter. Please add the function below to your functions.php file.
/**
* Define Video Background's post types
*
* @since 2.5.7
* @author Blake Wilson
* @param array $post_types
* @return array Array of post types vidbg should use
*/
function themeprefix_vidbg_post_types( $post_types ) {
/**
* list the post types you would like Video Background
* to use in the form of an array
*/
$post_types = array( 'post', 'page' );
return $post_types;
}
add_filter( 'vidbg_post_types', 'themeprefix_vidbg_post_types' );
Change the $post_types
param as needed.
I hope this helps!
Regards,
Blake