Quick Edit for Custom Post Types
-
I’ve got the plugin working with custom post types easily enough thanks to your code snippet:
add_action( 'init', 'prefix_init' ); function prefix_init() { add_post_type_support( 'custom_post_type', 'simple-page-sidebars' ); }The only thing I’m missing is the quick edit for the registered CPT in the admin. Is it possible to enable that?
The topic ‘Quick Edit for Custom Post Types’ is closed to new replies.