我正在尝试在“添加帖子”或“添加页面”中添加一个额外的字段,在其中将该字段的值插入到数据库中 wp_posts 表中添加的手动添加的列中。
我知道我可以使用自定义字段模板,但问题是这些自定义字段将值插入 wp_postmeta 而不是 wp_post,我需要同一张表中的单个帖子的所有内容。
知道怎么做吗?
如果您已经手动将该字段添加到 wp_posts 表中,那么您只需要使用一些挂钩将该字段添加到帖子页面然后保存它。
// Function to register the meta box
function add_meta_boxes_callback( $post_type, $post ) {
add_meta_box( 'my_field', 'My Field', 'output_my_meta_box', 'post' );
}
add_action( 'add_meta_boxes', 'add_meta_boxes_callback', 10, 2 );
// Function to actually output the meta box
function output_my_meta_box( $post ) {
echo '<input type="text" name="my_field" value="' . $post->my_field . '" />';
}
// Function to save the field to the DB
function wp_insert_post_data_filter( $data, $postarr ) {
$data['my_field'] = $_POST['my_field'];
return $data;
}
add_filter( 'wp_insert_post_data', 'wp_insert_post_data_filter', 10, 2 );