Last active
August 24, 2023 09:22
-
-
Save jesgs/e619bfbfe10ad998d8a61ac41cc958a7 to your computer and use it in GitHub Desktop.
Fixes issue with menu_order not saving properly with Gutenberg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Add page attributes to post | |
*/ | |
function mytheme_add_post_attributes() | |
{ | |
add_post_type_support('post', 'page-attributes'); | |
} | |
add_action('init', 'mytheme_add_post_attributes', 500); | |
/** | |
* Add the menu_order property to the post object being saved | |
* | |
* @param \WP_Post|\stdClass $post | |
* @param WP_REST_Request $request | |
* | |
* @return \WP_Post | |
*/ | |
function mytheme_pre_insert_post($post, \WP_REST_Request $request) | |
{ | |
$body = $request->get_body(); | |
if ($body) { | |
$body = json_decode($body); | |
if (isset($body->menu_order)) { | |
$post->menu_order = $body->menu_order; | |
} | |
} | |
return $post; | |
} | |
add_filter('rest_pre_insert_post', 'mytheme_pre_insert_post', 12, 2); | |
/** | |
* Load the menu_order property for frontend display in the admin | |
* | |
* @param \WP_REST_Response $response | |
* @param \WP_Post $post | |
* @param \WP_REST_Request $request | |
* | |
* @return \WP_REST_Response | |
*/ | |
function mytheme_prepare_post(\WP_REST_Response $response, $post, $request) | |
{ | |
$response->data['menu_order'] = $post->menu_order; | |
return $response; | |
} | |
add_filter('rest_prepare_post', 'mytheme_prepare_post', 12, 3); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome! thanks nice fix code.
But last line have typo maybe.
↓