【发布时间】:2018-07-22 05:19:36
【问题描述】:
我为自定义帖子类型创建了一个新的元框,但我无法让数据(用户所在的城市)显示在 Location 下。
这是我的代码:
function wporg_add_custom_box()
{
add_meta_box(
'wporg_box_id', // Unique ID
'Location', // Box title
'custom_meta_box_markup', // Content callback, must be of type callable
'project', // Post Type
'side',
'core');
}
add_action('add_meta_boxes', 'wporg_add_custom_box');
function custom_meta_box_markup() {
global $post;
$custom_fields = get_the_author_meta( 'city', $author_id );
?>
<div>
<input name="custom_fields" type="text" value="<?php echo $custom_fields;?>">
</div>
<?php }
【问题讨论】:
标签: wordpress metadata meta-boxes