You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.
Since "Quick Edit" triggers the save_post hook the following function might end up clearing the meta data of registered metaboxes that are not included in the Quick Edit form:
Since "Quick Edit" triggers the save_post hook the following function might end up clearing the meta data of registered metaboxes that are not included in the Quick Edit form:
WordPress-Plugin-Template/includes/lib/class-wordpress-plugin-template-admin-api.php
Line 341 in 27d7286
This issue is referenced here:
https://wordpress.stackexchange.com/questions/4931/quick-edit-update-clears-out-my-custom-meta-values
I suggest replacing
if( !$post_id )
by
if( !$post_id || isset($_POST['_inline_edit']) )
The text was updated successfully, but these errors were encountered: