保存自定义帖子元,不保存数据

Posted

技术标签:

【中文标题】保存自定义帖子元,不保存数据【英文标题】:Save custom post meta, not saving the data 【发布时间】:2016-05-23 08:04:17 【问题描述】:

我创建了一个自定义帖子类型,其中包含元框日期和日期。

使用add_events_metaboxes的回调函数创建自定义帖子类型

function event_list_init()

    $labels = array(
        'name'                  => _x( 'Events', 'post type general name' ),
        'singular_name'         => _x( 'Event', 'post type singular name' ),
        'menu_name'             => _x( 'Events List', 'admin menu' ),
        'name_admin_bar'        => _x( 'Events List', 'add new on admin bar' ),
        'add_new_item'          => __( 'Add New Event' ),
        'new_item'              => __( 'New Event' ),
        'edit_item'             => __( 'Edit Event' ),
        'view_item'             => __( 'View Event' ),
        'all_items'             => __( 'All Events' ),
        'search_items'          => __( 'Search Events' ),
        'not_found'             => __( 'No Events found.' ),
        'not_found_in_trash'    => __( 'No Events found in Trash.' )
    );

    $args   = array(
        'labels'                => $labels,
        'description'           => __( 'Create Events' ),
        'public'                => true,
        'publicly_queryable'    => true,
        'show_ui'               => true,
        'show_in_menu'          => true,
        'query_var'             => true,
        'rewrite'               => array( 'slug' => 'event' ),
        'capability_type'       => 'post',
        'has_archive'           => true,
        'hierarchical'          => true,
        'menu_position'         => 6,
        'register_meta_box_cb'  => 'add_events_metaboxes',
        'menu_icon'             => 'dashicons-calendar-alt',
        'supports'              => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )
    );

    register_post_type('events',$args);



add_action('init','event_list_init');

这里是一个回调函数,它通过动作钩子save_post实例化一个创建元框并保存发布数据的类

function add_events_metaboxes()
   new eventsListMetaBox();


class eventsListMetaBox
    /*
     * Constructor that creates the meta box
     */
    public  function  __construct()
        /**
         * Render and Add form meta box
         */
        add_meta_box('wpt_events_date', 'Events Date', array($this, 'fisa_events_date'), 'events', 'side', 'high');

        /**
         * Save Date from and to as meta key
         */
        add_action('save_post',array($this, 'fisa_events_date_save'),1,2);
    

    /**
     * Render Form for Events date
     */
    function fisa_events_date() 

        global $post;

        // Add an nonce field so we can check for it later.
        wp_nonce_field( 'events_date_fromto', 'events_datefromto_nonce' );

        // Echo out the field
        echo '<label for="_fisa_date_from">Date From</label>';
        echo '<input id="fisa-event-datefrom" type="text" name="_fisa_date_from"  class="widefat" />';
        echo '<br/><br/>';
        echo '<label for="_fisa_date_to">Date To</label>';
        echo '<input id="fisa-event-dateto" type="text" name="_fisa_date_to" class="widefat" />';

    

    /**
     * Meta key actual database insertion
     */
    function fisa_events_date_save($post_id)

        /**
         * Check if nonce is not set
         */
//        if (!isset($_POST['events_datefromto_nonce']))
//            return $post_id;
//
//        $nonce = $_POST['events_datefromto_nonce'];
//        /**
//         * Verify that the request came from our screen with the proper authorization
//         */
//        if(!wp_verify_nonce($nonce,'events_date_fromto'))
//            return $post_id;
//
//        //Check the user's permission
//
//        if(!current_user_can('edit_post',$post_id) )
//            return $post_id;

        //Prepare and sanitize the data before saving it
        $events_date =  array(
                            sanitize_text_field( $_POST['_fisa_date_from']),
                            sanitize_text_field($_POST['_fisa_date_to'])
                        );

        update_post_meta($post_id, '_fisa_events_date', $events_date);
    

我的问题是我在 wordpress 的postmeta 表中看不到_fisa_events_date 元键。谁能指出我错过了什么或者我应该怎么做才能保存它?

【问题讨论】:

您是否能够在编辑此类帖子时看到显示的元框? @Stiliyan 是的。我明白了。唯一的问题是它没有保存数据。这就是为什么在我的帖子中,我将 nonce 验证作为评论只是为了尝试直接保存数据。 @jameswartlopez 你有没有可能没有在add_action('admin_init', 'add_events_metaboxes'); 注册你的元框?添加该语句后,我可以成功地将 _fisa_events_date 与您的其余代码一起保存。 您可以直接将其添加到您的add_action('init', 'event_list_init') 挂钩下。但我建议将所有自定义邮政编码放在一个文件中,例如events.php 和文件最顶部的 add_action 挂钩。然后,在您的functions.php 中,您可以require_once('events.php'); 查看我的答案以了解详细要点。 @Stiliyan 是正确的!你不应该使用 register_meta_box_cs 来保存帖子。 admin init 将是一个更好的选择,并且经常用于要初始化的类! 【参考方案1】:

您依靠register_meta_box_cb 来显示您的元框并将保存逻辑挂钩到save_post。问题是 Wordpress 仅在需要显示元框时运行 register_meta_box_cb(它与 add_meta_boxes 挂钩) - 即在访问编辑或添加帖子页面时。但是当 Wordpress 保存帖子时,它不需要显示元框,所以 register_meta_box_cbadd_events_metaboxes 和你的 save_post 钩子永远不会被调用。

最简单的解决方案是删除您的register_meta_box_cb 参数,并将您的add_events_metaboxes 函数与admin_init 事件挂钩。

add_action('admin_init', 'add_events_metaboxes');

您可以在 add_action('init', 'event_list_init') 挂钩下执行此操作。

查找要点here。

【讨论】:

【参考方案2】:

根据 Wordpress documentation、register_meta_box_cb

将在设置编辑表单的元框时调用。

哪个是too late 挂钩到save_post

所以我建议你在 functions.php 文件中的某处单独挂钩 save_post

注册帖子类型

$args   = array(
    ....
    'register_meta_box_cb'  => 'add_events_metaboxes',
    ....
);
register_post_type( 'events', $args );

渲染元框

function add_events_metaboxes()
   new eventsListMetaBox();


class eventsListMetaBox
    public  function  __construct()
        add_meta_box('wpt_events_date', 'Events Date', array($this, 'fisa_events_date'), 'events', 'side', 'high');
    

    function fisa_events_date() 
        ...
    

保存元框

add_action( 'save_post', 'fisa_events_date_save' );

function fisa_events_date_save()
    global $post;
    $post_id = $post->ID;

    // Use wp_verify_nonce and other checks to verify everything is right

    $events_date =  array(
                        sanitize_text_field( $_POST['_fisa_date_from']),
                        sanitize_text_field($_POST['_fisa_date_to'])
                    );
    update_post_meta($post_id, '_fisa_events_date', $events_date);

请记住,Wordpress 并非完全面向对象操作,因此将其 hooking system 与 OOP 概念结合使用可能会出现问题。

【讨论】:

【参考方案3】:

最简单、最灵活的解决方案是使用高级自定义字段。

【讨论】:

嗨,Trips,很抱歉,您的回答有几个问题,并且几乎很想将其标记为将其转换为评论...“类似评论”是首要问题;然后,OP 要求提供代码解决方案,而不是简单插件的提示(是的,ACF 很棒);如需提示,请发表评论。个人观点:如果我要按照您的方式回答,我会添加一个插件链接,添加一个简短的描述(客观的东西,而不是营销),并展示一个如何以 ACF 允许的方式以编程方式进行操作的示例。万事如意!【参考方案4】:

正如其他答案中所揭示的,问题是register_meta_box_cb 回调只会处理以下内容:

在回调中调用remove_meta_box()add_meta_box()

save_post 不在回调中,必须是独立的。这个动作钩子发生了:

每当创建或更新帖子或页面时,可能来自导入、帖子/页面编辑表单、xmlrpc 或通过电子邮件发布

当您使用类来包装元框创建时,我建议将所有内容都包装在其中。PS:检查 cmets 并在 save_post 回调中添加必要的检查。

<?php
class MyEvents 
    public  function  __construct()
        add_action( 'init', array( $this, 'init' ) );    
        add_action( 'save_post', array( $this, 'save_post' ), 10, 2 ); // no need to change priority to 1
    

    public function init()
        $labels = array(
            'name'                  => _x( 'Events', 'post type general name' ),
            'singular_name'         => _x( 'Event', 'post type singular name' ),
            'menu_name'             => _x( 'Events List', 'admin menu' ),
            'name_admin_bar'        => _x( 'Events List', 'add new on admin bar' ),
            'add_new_item'          => __( 'Add New Event' ),
            'new_item'              => __( 'New Event' ),
            'edit_item'             => __( 'Edit Event' ),
            'view_item'             => __( 'View Event' ),
            'all_items'             => __( 'All Events' ),
            'search_items'          => __( 'Search Events' ),
            'not_found'             => __( 'No Events found.' ),
            'not_found_in_trash'    => __( 'No Events found in Trash.' )
        );
        $args   = array(
            'labels'                => $labels,
            'description'           => __( 'Create Events' ),
            'public'                => true,
            'publicly_queryable'    => true,
            'show_ui'               => true,
            'show_in_menu'          => true,
            'query_var'             => true,
            'rewrite'               => array( 'slug' => 'event' ),
            'capability_type'       => 'post',
            'has_archive'           => true,
            'hierarchical'          => true,
            'menu_position'         => 6,
            'register_meta_box_cb'  => array( $this, 'add_metaboxes' ),
            'menu_icon'             => 'dashicons-calendar-alt',
            'supports'              => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )
        );
        register_post_type('events',$args);
    

    public function add_metaboxes() 
        add_meta_box( 'wpt_events_date', 'Events Date', array( $this, 'the_metabox' ), 'events', 'side', 'high' );
    

    public function the_metabox( $post )  // No need for "global $post", it's passed as parameter
        wp_nonce_field( 'events_date_fromto', 'events_datefromto_nonce' );
        $dates = get_post_meta( $post->ID, '_fisa_events_date', true);
        $from = $dates ? $dates[0] : false;
        $to = $dates ? $dates[1] : false;
        echo '<label for="_fisa_date_from">Date From</label>';
        printf(
            '<input id="fisa-event-datefrom" type="text" name="_fisa_date_from"  class="widefat" value="%s" />',
            $from ? $from : ''
        );
        echo '';
        echo '<br/><br/>';
        echo '<label for="_fisa_date_to">Date To</label>';
        printf(
            '<input id="fisa-event-dateto" type="text" name="_fisa_date_to"  class="widefat" value="%s" />',
            $to ? $to : ''
        );
    

    public function save_post( $post_id, $post_object )  // second parameter has useful info about current post
        /* BRUTE FORCE debug */
        // wp_die( sprintf( '<pre>%s</pre>', print_r( $_POST, true ) ) );

        /**
         * ADD SECURITY AND CONTENT CHECKS, omitted for brevity
         */
        if( !empty( $_POST['_fisa_date_from'] ) ) 
            $events_date =  array(
                                sanitize_text_field( $_POST['_fisa_date_from']),
                                sanitize_text_field($_POST['_fisa_date_to'])
                            );
            update_post_meta($post_id, '_fisa_events_date', $events_date);
        
    

new MyEvents();

【讨论】:

以上是关于保存自定义帖子元,不保存数据的主要内容,如果未能解决你的问题,请参考以下文章

无法使用自定义元数据保存图像

使用 Swift (iOS) 和 Photos 框架保存自定义图像的元数据

如何在wordpress插件的自定义元框中保存多个复选框值?

在 WooCommerce 订单和电子邮件中保存并显示产品自定义元数据

Wordpress 保存帖子操作会覆盖帖子元更新

Wordpress 自定义 Metabox 复选框保存问题