解决了升级到php8之后,写文章时的警告。详情:https://yangyq.net/2022/06/wordpress-warning-metaboxes-nonce.html

This commit is contained in:
laoyang
2022-06-20 11:08:26 +08:00
parent dd6f9bc85e
commit 4b4bd9d0b2
+1 -1
View File
@@ -423,7 +423,7 @@ function post_seo_callback( $post ) {
function wpdocs_save_meta_box( $post_id ) {
global $new_meta_boxes;
if ( !wp_verify_nonce( $_POST['metaboxes_nonce'], plugin_basename(__FILE__) ))
if ( empty( $_POST['metaboxes_nonce'] )||!wp_verify_nonce( $_POST['metaboxes_nonce'], plugin_basename(__FILE__) ))
return;
if ( !current_user_can( 'edit_posts', $post_id ))