我已经搜索了几天,并且没有找到关于如何允许管理员用户通过单击按钮复制自定义帖子类型的元数据的信息。
add_meta_box(
'Presentation', // $id
'Presentation', // $title
'show_custom_presentation_meta_box', // $callback
'presentations', // $page
'normal', // $context
'high', // $priority
$custom_presenter_meta_fields); // $callback_args
在add_meta_boxes动作中调用add_meta_box函数时,我不确定是否可以存储任何变量,允许循环在用户保存带有其他元变量的帖子后添加正确数量的元变量。
我已经实现了动态字段,当用户点击按钮时,会在帖子更新时添加并保存其他文本字段。
我不打算复制元数据框中的字段。我想在单击+时创建整个元数据的副本。
非常感谢正确方向上的一点。谢谢!
答案 0 :(得分:1)
我不能在这里提供完整的答案,但可以指点。
要复制元数据,您需要添加javascript。
name=""
字段的前缀为name="1_text"
name="1_firstname"
name="2_text"
name="2_firstname"
更改名称属性
同样在示例'Presentation', // $id
add_meta_box
编辑。点1也可以使用数组符号来完成:
<input type="text" name="text[1]" />
<input type="text" name="firstname[1]" />
保存时更容易。加载时可能更容易填充。
答案 1 :(得分:0)
我发现创建动态元数据箱的第一步是在按钮点击时创建您想要重复的其他元数据库。
在单独的元数据框中,我们需要一个包含所需动态元变量计数的字段。 *注意此字段可以隐藏或可见。
global $presenter_count;
add_meta_box(
'Meetings', // $id
'Meetings Info', // $title
'show_custom_meetings_meta_box', // $callback
'meetings', // $page
'normal', // $context
'high', // $priority
$custom_meetings_meta_fields); // $callback_args
$c = 0;
$count = get_post_meta($post_id, 'meetings_presenter_count', true);
while ( $c < $count) {
$presenter_count = 0;
add_meta_box(
'Presentation'.$c, // $id
'Presentation '.++$c, // $title
'show_custom_meetings_meta_box', // $callback
'meetings', // $page
'normal', // $context
'low', // $priority
$custom_meetings_presenter_meta_fields); // $callback_args
}
在构建字段的回调函数中,我们希望确保调用全局变量$ presenter_count。
每次while循环执行时,基于演示数字段的meta_value字段,演示者计数增量,这将为我们的字段设置正确的数组。
// Callback args for metabox
$custom_meetings_presenter_meta_fields = array(
array(
'label' => 'Presenter\'s Name',
'desc' => 'The presenter\'s prefix and name',
'id' => $prefix.'name',
'type' => 'presenter_name'
));
// Callback function
function show_custom_meetings_meta_box($post, $custom_meetings_field) {
global $custom_meetings_meta_fields, $custom_meetings_presenter_meta_fields, $post, $presenter_count;
// Use nonce for verification
echo '<input type="hidden" name="custom_meta_box_nonce" value="'.wp_create_nonce(basename(__FILE__)).'" />';
// Begin the field table and loop
echo '<table class="form-table">';
foreach ($custom_meetings_field['args'] as $field) {
// get value of this field if it exists for this post
$meta = get_post_meta($post->ID, $field['id'], true);
// begin a table row with
echo '<tr>
<th><label for="'.$field['id'].'">'.$field['label'].'</label></th>
<td>';
switch($field['type']) {
// Presenter Name
case 'presenter_name':
$c = $presenter_count;
echo '<input type="text" name="'.$field['id'].'['.$c.']" id="'.$field['id'].'-'.$c.'" value="'.$meta[$c].'" size="30" />
<br /><span class="description">'.$field['desc'].'</span>';
break;
} //end switch
echo '</td></tr>';
}
} // end foreach
echo '</table>'; // end table
}
我们还需要为用户设置一个按钮,以便在命令中添加元数据。
按钮背后的代码:
jQuery('.add-presentation').on('click', function(){
var c = jQuery('#meetings_presenter_count').val(); // get presenter count
var pc = 0;
if ( c != '' ) {
pc = c + 1;
// write a condition that allows for one presenter to exist
jQuery('#Presentation'+pc).after('Insert Metabox');
jQuery('#meetings_presenter_count').val(pc); // Increment presenter count
}else{ // If no presenter box exists make count = 1
jQuery('#meetings_presenter_count').val('1');
jQuery('#Meetings').after('Insert Metabox');
}
});