gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 13:17:24 24 4
gpt4 key购买 nike

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

使用 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');

这里是回调函数,它实例化一个类来创建 metabox 并通过操作 Hook 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 元键。任何人都可以指出我错过了什么或者我应该怎么做才能保存是吗?

最佳答案

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

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

add_action('admin_init', 'add_events_metaboxes');

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

查找要点 here .

关于php - 保存自定义帖子元,不保存数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35358088/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com