【问题标题】:Wordpress meta boxes only saving some of the values?Wordpress 元框只保存一些值?
【发布时间】:2012-11-14 09:35:36
【问题描述】:

我正在为 wordpress 制作服装元盒。问题是wordpress似乎只保留/保存我在字段中输入的一些值。我也找不到模式。所以这里是代码:

<?php
function add_products_metaboxes() {
    add_meta_box('sra_product_info', 'Product Information', 'sra_products_info', 'product', 'side', 'default');
  }
  // The Productinfo Metabox
function sra_products_info() {
    //get access to the post object
    global $post;
    // Noncename needed to verify where the data originated
    echo '<input type="hidden" name="productmeta_noncename" id="productmeta_noncename" value="' .
    wp_create_nonce( plugin_basename(__FILE__) ) . '" />';
    // Get the data from the field if its already been entered
    $name = get_post_meta($post->ID, '_name', true);
    $price = get_post_meta($post->ID, '_price', true);
    $includes = get_post_meta($post->ID, '_includes', true);
    $supports = get_post_meta($post->ID, '_supports', true);
    $version = get_post_meta($post->ID, '_version' , true);
    $extrainfo = get_post_meta($post->ID, '_extrainfo', true);
    // Echo out the form
   echo '<form>';
    echo '<label for="_name">Name</label>' . '<input type="text" name="_name" value="' . $name . '"/>';
    echo '<label for="_price">Price</label>' . '<input type="text" name="_price" value="' . $price . '"/>';
    echo '<label for="_includes">Includes</label> <textarea name="_includes" rows="4" cols="10">' . $includes . '</textarea>'; 
    echo '<label for="_supports">Supports</label> <input type="text" name="_supports" value="' . $supports . '"/>';
    echo '<label for="_version">Version</label>' . '<input type="text" name="_version" value="' . $version . '"/>';
    echo '<label for="_extrainfo">Extras</label> <textarea name="_extrainfo" rows="4" cols="10">' . $extrainfo . '</textarea>'; 
   echo '</form>';

}

// Save the Metabox Data
function sra_save_product_meta($post_id, $post) {
    // verify this came from the our screen and with proper authorization,
    // because save_post can be triggered at other times
    if ( !wp_verify_nonce( $_POST['productmeta_noncename'], plugin_basename(__FILE__) )) {
    return $post->ID;
    }
    // Is the user allowed to edit the post or page?
    if ( !current_user_can( 'edit_post', $post->ID ))
        return $post->ID;
    // OK, we're authenticated: we need to find and save the data
    // check if the field exists in the posts array - if it does, then put cintent in $product_meta.
    // this code needs to be refactored!

if (isset($_POST['_name'])) {
    $product_meta['_name'] = $_POST['_name'];    
    }

 if (isset($_POST['_price'])) {
    $product_meta['_price'] = $_POST['_price'];    
    }

if (isset($_POST['_includes'])) {
    $product_meta['_includes'] = $_POST['_includes'];    
    }

if (isset($_POST['_supports'])) {
    $product_meta['_supports'] = $_POST['_supports'];    
    }

if (isset($_POST['_version'])) {
    $product_meta['_version'] = $_POST['_version'];    
    }

if (isset($_POST['_extrainfo'])) {
    $product_meta['_extrainfo'] = $_POST['_extrainfo'];    
    }


    // Add values of $prpduct_meta as custom fields
    foreach ($product_meta as $key => $value) { // Cycle through the $product_meta array!
        if( $post->post_type == 'revision' ) return; // Don't store custom data twice
        $value = implode(',', (array)$value); // If $value is an array, make it a CSL (unlikely)
        if(get_post_meta($post->ID, $key, FALSE)) { // If the custom field already has a value
            update_post_meta($post->ID, $key, $value);
        } else { // If the custom field doesn't have a value
            add_post_meta($post->ID, $key, $value);
        }
        if(!$value) delete_post_meta($post->ID, $key); // Delete if blank
    }
}
add_action('save_post', 'sra_save_product_meta', 1, 2); // save the custom fields

您是否发现任何明显的错误?我想我对自己在这段代码中的错误有点盲目..

【问题讨论】:

  • 标签上的for 属性引用表单控件的id,而不是name
  • 我已将元框添加到“页面”帖子类型以进行测试,它完美地保存了所有细节。更改和删除也不是问题。为了让它运行,我必须添加这一行 add_action('admin_menu', 'add_products_metaboxes');,你可能在代码中的其他地方找到了它。请注意,我正在以管理员身份进行编辑。您使用什么类型的用户来更改元信息?
  • 作为测试,尝试在新主题上运行该代码,无需任何其他修改(只需使用 index.php、functions.php 和 style.css 创建一个新文件夹)。也许你有其他事情搞砸了你的储蓄。
  • 我正在使用管理员用户来...。字段名称、版本和支持似乎已正确添加。其他的都留空了……
  • 哦,感谢 for attr 的提示。 :)

标签: php wordpress meta-boxes


【解决方案1】:

一般来说,我会建议为您的字段名称使用前缀。像_name 这样的值有太多机会与其他地方同名的其他值发生冲突。使用_product_name之类的东西。你能试试吗?如果您的代码适用于页面,它应该会产生影响。 为什么不将带有“true”的第四个参数添加到 add_post_meta() 和 update_post_meta() 的先前值?请参阅有关这些功能的 WordPress 法典:http://codex.wordpress.org/Function_Reference/add_post_meta。所以它会去:

        if(get_post_meta($post->ID, $key, FALSE)) { // If the custom field already has a value
        update_post_meta($post->ID, $key, $value, /***OLDVALUE***/ ); // See http://codex.wordpress.org/Function_Reference/update_post_meta for old value
    } else { // If the custom field doesn't have a value
        add_post_meta($post->ID, $key, $value, true);
    }

我认为很明显您与同名的元键有冲突。不是在页面中,而是在帖子中。因此,请尝试使用第 4 个参数来确保您引用的是唯一键(我的建议仍然是,使用明确的前缀与其他任何东西区分开来,无论是插件、核心等)

【讨论】:

  • 感谢您的提示 :) 我的实际错误是我在两个字段上忘记了 '',所以这有点令人尴尬 :) 我将添加 yhat 附加参数,并添加前缀名字虽然:)
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2011-11-23
  • 1970-01-01
相关资源
最近更新 更多