Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/282.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 自定义元框保存值问题-不推荐使用:函数ereg()等_Php_Wordpress_Meta Boxes - Fatal编程技术网

Php 自定义元框保存值问题-不推荐使用:函数ereg()等

Php 自定义元框保存值问题-不推荐使用:函数ereg()等,php,wordpress,meta-boxes,Php,Wordpress,Meta Boxes,我是WP主题开发人员nobie,在保存自定义元框值时遇到问题 我找到了一些教程,其中解释了如何做到这一点 我在我的functions.php中包含了一个名为custom-meta-box-save.php的文件,其中包含以下代码: <?php function save_postdata( $post_id ) { global $post, $new_meta_boxes, $page_settings, $blogroll, $post_settings, $team_inf

我是WP主题开发人员nobie,在保存自定义元框值时遇到问题

我找到了一些教程,其中解释了如何做到这一点

我在我的functions.php中包含了一个名为custom-meta-box-save.php的文件,其中包含以下代码:

<?php 
function save_postdata( $post_id ) {
    global $post, $new_meta_boxes, $page_settings, $blogroll, $post_settings, $team_info, $slide_info, $meta_box_groups;


    if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE ) {
        return $post_id;
    }

    if( defined('DOING_AJAX') && DOING_AJAX ) { //Prevents the metaboxes from being overwritten while quick editing.
        return $post_id;
    }

    if( ereg('/\edit\.php', $_SERVER['REQUEST_URI']) ) { //Detects if the save action is coming from a quick edit/batch edit.
        return $post_id;
    }
    foreach($meta_box_groups as $group) {
        foreach($group as $meta_box) {

            if(isset($_POST[$meta_box['name'].'_noncename'])){
                if ( !wp_verify_nonce( $_POST[$meta_box['name'].'_noncename'], $meta_box['name'].'-meta' )) {
                    error_log(print_r($meta_box, TRUE).'{err_end}');
                    return $post_id;
                }
            }

            if ( isset($_POST['post_type']) && 'page' == $_POST['post_type'] ) {
                if ( !current_user_can( 'edit_page', $post_id ))
                    return $post_id;
            } else {
                if ( !current_user_can( 'edit_post', $post_id ))
                    return $post_id;
            }

            if(isset($_POST[$meta_box['name'].'_value'])){
                $data = $_POST[$meta_box['name'].'_value'];
            }

            if(get_post_meta($post_id, $meta_box['name'].'_value') == "") 
                add_post_meta($post_id, $meta_box['name'].'_value', $data, true);
            elseif($data != get_post_meta($post_id, $meta_box['name'].'_value', true))
                update_post_meta($post_id, $meta_box['name'].'_value', $data);
            elseif($data == "" || $data == $meta_box['std'] )
                delete_post_meta($post_id, $meta_box['name'].'_value', get_post_meta($post_id, $meta_box['name'].'_value', true));

        } // end foreach
    } // end foreach
} // end save_postdata

add_action('save_post', 'save_postdata');
?>
非常需要帮助,因为我的最后期限很近


谢谢

使用preg_match而不是ereg

例如。
preg\u match('/edit.php/',$\u服务器['SCRIPT\u NAME'])

是否需要在函数顶部使用global定义$data

Deprecated: Function ereg() is deprecated in /home/creat/domains/tester.net/public_html/re/wp-content/themes/rev2/includes/custom-meta-boxes-save.php on line 14

Notice: Undefined variable: data in /home/creat/domains/tester.net/public_html/re/wp-content/themes/rev2/includes/custom-meta-boxes-save.php on line 41

Notice: Undefined variable: data in /home/creat/domains/tester.net/public_html/re/wp-content/themes/rev2/includes/custom-meta-boxes-save.php on line 43

Warning: Cannot modify header information - headers already sent by (output started at /home/creat/domains/tester.net/public_html/re/wp-content/themes/rev2/includes/custom-meta-boxes-save.php:41) in /home/creative/domains/ctproject.net/public_html/sa2/wp-admin/post.php on line 233

Warning: Cannot modify header information - headers already sent by (output started at /home/creat/domains/tester.net/public_html/re/wp-content/themes/rev2/includes/custom-meta-boxes-save.php:41) in /home/creative/domains/ctproject.net/public_html/sa2/wp-includes/pluggable.php on line 1178