Hello,
I have the same problem, I created some custom post types but the settings for the background don’t show on the backend page, and the default slides don’t show on the single custom post page anyways.
Do we have to add something to the code creating a custom post to enable the slider?
This is what I wrote :
function create_post_type_projet()
{
register_taxonomy_for_object_type('category', 'projet'); // Register Taxonomies for Category
register_taxonomy_for_object_type('post_tag', 'projet');
register_post_type('projet', // Register Custom Post Type
array(
'labels' => array(
'name' => __('Projets', 'projet'), // Rename these to suit
'singular_name' => __('Projet', 'projet'),
'add_new' => __('Add New', 'projet'),
'add_new_item' => __('Add New Projet', 'projet'),
'edit' => __('Edit', 'projet'),
'edit_item' => __('Edit Projet', 'projet'),
'new_item' => __('New Projet', 'projet'),
'view' => __('View Projet', 'projet'),
'view_item' => __('View Projet', 'projet'),
'search_items' => __('Search Projet', 'projet'),
'not_found' => __('No Projets found', 'projet'),
'not_found_in_trash' => __('No Projets found in Trash', 'html5blank')
),
'public' => true,
'hierarchical' => true, // Allows your posts to behave like Hierarchy Pages
'has_archive' => true,
'supports' => array(
'title',
'editor',
'excerpt',
'thumbnail',
), // Go to Dashboard Custom HTML5 Blank post for supports
'can_export' => true, // Allows export in Tools > Export
'taxonomies' => array(
'post_tag',
'category'
) // Add Category and Post Tags support
));
}
Cheers!