我在wordpress主题的functions.php中添加了一些WordPress元数据代码,我面临的问题是我的元数据数据根本没有被保存,它只是在保存草稿或发布时消失了。我有一个早期版本的代码在一个月前工作得很好,但由于一些错误我不再拥有它,我不记得我是如何从这个草案中获得代码的。
今天我已经盯着这段代码了4个小时,我知道答案应该很简单,但这让我很生气:
add_action('save_post', 'mytheme_save_data');
// Save data from meta box
function mytheme_save_data($post_id) {
global $meta_box;
// verify nonce
if (!wp_verify_nonce($_POST['mytheme_meta_box_nonce'], basename(__FILE__))) {
return $post_id;
}
// check autosave
if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
return $post_id;
}
// check permissions
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 ($meta_box['fields'] as $field) {
$old = get_post_meta($post_id, $field['id'], true);
$new = $_POST[$field['id']];
if ($new && $new != $old) {
update_post_meta($post_id, $field['id'], $new);
} elseif ('' == $new && $old) {
delete_post_meta($post_id, $field['id'], $old);
}
}
}
请帮帮忙?
答案 0 :(得分:2)
function save_portfolio_meta($post_id, $post)
{
if (!wp_verify_nonce($_POST['portfoliometa_noncename'], plugin_basename(__FILE__))) return $post->ID;
if (!current_user_can('edit_post', $post_id))
return $post_id;
$portfolio_meta['_link'] = $_POST['_link'];
$portfolio_meta['_class'] = $_POST['_class'];
foreach($portfolio_meta as $key => $value)
{
$value = implode(',', (array)$value);
if (get_post_meta($post->ID, $key, FALSE))
{
update_post_meta($post->ID, $key, $value);
}
else
{
add_post_meta($post->ID, $key, $value);
}
if (!$value)
delete_post_meta($post->ID, $key);
}
}
add_action('save_post', 'save_portfolio_meta', 1, 2);