我正忙于使用转发器元框(排序和克隆)构建自定义帖子类型,以存储信息组。
第一个中继器metabox是单个文本输入,效果很好。
问题子: 第二个中继器metabox是一个双中继器,带有用于标签的文本输入和用于内容的文本区域。数据将保存并排序,但是当我单击“克隆”按钮时,textarea继承了列表中最后一项的值。该值可以覆盖,但是当我删除行时,它也会从上面的行中删除内容。
我怀疑问题可能在于行计数。经过调查,我发现新行的编号与上面的相同。不幸的是,我对如何解决此问题感到困惑,而食典并未产生很多答案。
function show_country_facts_meta_box() {
global $facts_meta_fields, $post;
echo '<input type="hidden" name="facts_meta_box_nonce" value="'.wp_create_nonce(basename(__FILE__)).'" />';
echo '<table class="form-table">';
foreach ($facts_meta_fields as $field) {
$meta = get_post_meta($post->ID, $field['id'], true);
echo '<tr>
<td style="display: inline-block; width: 100%; padding: 0;">';
switch($field['type']) {
case 'double_repeatable':
echo ' <ul id="'.$field['id'].'-repeatable" class="custom_repeatable">';
$i = 0;
if ($meta) {
foreach($meta as $row) {
echo '<li>
<span class="sort hndle">|||</span>
<div class="rowMiddle">
<label>'.$field['options'][0].'</label>
<input type="text" name="'.$field['id'].'['.$i.'][0]" id="'.$field['id'].'" value="'.$row[0].'" size="15"/>
<label>'.$field['options'][1].'</label>
<textarea name="'.$field['id'].'['.$i.'][1]" id="'.$field['id'].'" cols="60" rows="4">'.$row[1].'</textarea>
</div>
<a class="repeatable-remove button" href="#">–</a>
</li>';
$i++;
}
} else {
echo '<li>
<span class="sort hndle">|||</span>
<div class="rowMiddle">
<label>'.$field['options'][0].'</label>
<input type="text" name="'.$field['id'].'['.$i.'][0]" id="'.$field['id'].'" value="'.$row[0].'" size="15"/>
<label>'.$field['options'][1].'</label>
<textarea name="'.$field['id'].'['.$i.'][1]" id="'.$field['id'].'" cols="60" rows="4"></textarea>
</div>
<a class="repeatable-remove button" href="#">–</a>
</li>';
}
echo '</ul>
<span class="description">'.$field['desc'].'</span><br />
<a style="margin-top:10px;" class="repeatable-add button" href="#">+</a>';
break;
}
echo '</td></tr>';
}
echo '</table>';
}
// saving the repeater
function save_facts_custom_meta($post_id) {
global $facts_meta_fields;
if ( !isset( $_POST['facts_meta_box_nonce'] ) || !wp_verify_nonce( $_POST['facts_meta_box_nonce'], basename(__FILE__) ) )
return $post_id;
if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
return $post_id;
if ('page' == $_POST['post_type']) {
if (!current_user_can('edit_page', $post_id))
return $post_id;
} elseif (!current_user_can('edit_post', $post_id)) {
return $post_id;
}
foreach ($facts_meta_fields as $field) {
$old = get_post_meta($post_id, $field['id'], true);
$new = $_POST[$field['id']];
if($field['type'] == 'repeatable')
$new = array_values($new);
if ($new && $new != $old) {
update_post_meta($post_id, $field['id'], $new);
} elseif ('' == $new && $old) {
delete_post_meta($post_id, $field['id'], $old);
}
}
}
add_action('save_post', 'save_facts_custom_meta');
有人能阐明我该如何解决吗?
答案 0 :(得分:0)
已解决:问题出在jQuery中。
脚本在计算输入,但不计算文本区域-包括此表单字段解决了该问题。