Enabled Revisions to existing custom post type not working WordPress
$cap_type=”post”; $plural=”Products”; $single=”Product”; $cpt_name=”products”; $opts[‘supports’] = array( ‘products’, ‘title’, ‘editor’, ‘thumbnail’, ‘author’, ‘revisions’ ); $opts[‘can_export’] = TRUE; $opts[‘capability_type’] = $cap_type; $opts[‘description’] = ”; $opts[‘exclude_from_search’] = FALSE; $opts[‘has_archive’] = TRUE; $opts[‘hierarchical’] = TRUE; $opts[‘map_meta_cap’] = TRUE; $opts[‘menu_icon’] = ‘dashicons-products’; $opts[‘menu_position’] = 2; $opts[‘public’] = TRUE; $opts[‘publicly_queryable’] = TRUE; $opts[‘query_var’] = TRUE; $opts[‘register_meta_box_cb’] = ”; $opts[‘rewrite’] = … Read more