Order does not get saved in wp-admin
-
recent wordpress and scp plugin and no caching plugins involved. i noticed some strange behaviour. For some reason it loses the manual order in wp-admin on a page refresh. but frontend is fine. i created a loom for that to show:
what could be the reason? thats my cpt code:
$args_cpt4 = array( 'labels' => $labels_cpt4, 'public' => true, 'has_archive' => true, 'show_in_nav_menus' => true, 'show_ui' => true, 'menu_icon' => 'dashicons-calendar-alt', 'show_in_rest' => true, // Gutenberg 'supports' => array('title', 'editor', 'excerpt', 'revisions', 'thumbnail','author'), 'rewrite' => array( 'slug' => _x( 'event', 'URL slug', 'foundationpress' ), 'with_front' => false ), ); register_post_type('event', $args_cpt4);
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Order does not get saved in wp-admin’ is closed to new replies.