我使用查询监控插件检查了 WordPress,我得到了这个错误:Undefined index: postthe error in plugin n-custom-point错误位置是:1- wp-content/plugins/n-custom-point/class/metabox-user-group.php:17 prefix_register_meta_boxes() 这是第 17 行if($post->ID != $_REQUEST['post']) {2- wp-includes/class-wp-hook.php:287 apply_filters('rwmb_meta_boxes') 这是第 287 行$value = call_user_func_array( $the_['function'], $args );3- wp-content/plugins/n-custom-point/inc/meta-box/inc/core.php:50 RWMB_Core->register_meta_boxes() 这是第 50 行$configs = apply_filters( 'rwmb_meta_boxes', array() );4- wp-includes/class-wp-hook.php:287 do_action('init') 这是第 287 行$value = call_user_func_array( $the_['function'], $args );5- wp-settings.php:540 这是第 540 行do_action( 'init' );我想知道如何解决这个问题。
1 回答
红糖糍粑
TA贡献1815条经验 获得超6个赞
这是一个 PHP 通知,可以通过更改以下行来修复:
if($post->ID != $_REQUEST['post']) {
到
if( isset( $_REQUEST['post'] ) && $post->ID != $_REQUEST['post']) {
- 1 回答
- 0 关注
- 80 浏览
添加回答
举报
0/150
提交
取消