自定义“单选按钮元框”保存不正确

时间:2012-04-30 作者:Mr.Brown

我的包含单选按钮的“自定义元框/写入面板”脚本有问题。(见下文)。。。它目前似乎没有保存发布自定义帖子类型后所做的选择,不确定我错过了什么???

我计划如何从本质上利用这一点,是让客户机选择一个单选按钮选项,并根据所做的选择,将其作为类输出到锚定标记中,以帮助实例化特定的图像覆盖

谢谢你的帮助!

<?php
add_action( \'add_meta_boxes\', \'musicreleases_linktype_meta_box_add\' );
function musicreleases_linktype_meta_box_add()
{
    add_meta_box( \'musicreleases_linktype_meta_id\', \'Link Type (Optional)\', \'musicreleases_linktype_meta_box_cb\', \'eprmusicrelease\', \'normal\', \'low\' );
}

function musicreleases_linktype_meta_box_cb( $post )
{
    $values = get_post_custom( $post->ID );
    $radio = isset( $values[\'meta_box_musicreleases_linktype\'] ) ? esc_attr( $values[\'meta_box_musicreleases_linktype\'][0] ) : \'\';
    wp_nonce_field( \'my_meta_box_nonce\', \'meta_box_nonce\' );
    ?>
    <p>
        <input type="radio" name="linktype" value="freedownload_album" <?php echo ($radio); ?>/> Free<br />
        <input type="radio" name="linktype" value="buyonitunes_album" <?php echo ($radio); ?>/> iTunes<br />
        <input type="radio" name="linktype" value="none_album" <?php echo ($radio); ?>/> None<br />
    </p>
    <?php   
}

add_action( \'save_post\', \'musicreleases_linktype_meta_box_save\' );
function musicreleases_linktype_meta_box_save( $post_id )
{
    if( defined( \'DOING_AUTOSAVE\' ) && DOING_AUTOSAVE ) return;
    if( !isset( $_POST[\'meta_box_nonce\'] ) || !wp_verify_nonce( $_POST[\'meta_box_nonce\'], \'my_meta_box_nonce\' ) ) return;
    if( !current_user_can( \'edit_post\' ) ) return;

    $allowed = array( 
        \'a\' => array( 
            \'href\' => array() 
        )
    );

    if( isset( $_POST[\'meta_box_musicreleases_linktype\'] ) )
        update_post_meta( $post_id, \'meta_box_musicreleases_linktype\', wp_kses( $_POST[\'meta_box_musicreleases_linktype\'], $allowed ) );
}
?>

编辑#1

现在似乎工作得很好,感谢您的帮助<正如我所提到的,现在唯一的问题是,它没有显示在点击发布后选择了哪个单选按钮。。。(见下文)

enter image description here


编辑#2

还想知道如何为我的自定义列输出每个输入值的“漂亮版本”,使它们看起来像“iTunes”,而不是“buyonitunes\\u album”。

编辑#3

如果不可能,那没什么大不了的,但是有没有可能使列的值看起来更整洁?ie。"freedownload_album" -> "Free", for example. (见下文)

enter image description here

这就是我当前将值输出到我的列的方式。。。

function eprmusicrelease_custom_columns($column){
    global $post;
    switch ($column)
    {
        case "albumthumb":
            if (has_post_thumbnail($post->ID))
                echo get_the_post_thumbnail($post->ID, \'music-release-img-col\');
            else
                echo \'No Image Available\';
            break;
        case "albumlink":
            if (get_post_meta($post->ID, \'meta_box_musicreleases_url\', true))
                echo make_clickable (get_post_meta ($post->ID, \'meta_box_musicreleases_url\', true));
            else
                echo \'No URL Chosen\';
            break;
        case "linktype":
            echo get_post_meta($post->ID, \'meta_box_musicreleases_linktype\', true);
            break;
        case \'author\':
            echo get_post_meta( $post->ID , \'author\' , true ); 
            break;
        case \'date\':
            echo get_post_meta( $post->ID , \'date\' , true ); 
            break;
    }
}
?>

1 个回复
最合适的回答,由SO网友:Bainternet 整理而成

错误出现在您正在查找的保存函数中$_POST[\'meta_box_musicreleases_linktype\'] 这是从来没有设置过的,实际上应该是$_POST[\'linktype\'], 以及wp_kses 如果您想验证数据,并且知道所有可接受的值,您可以简单地使用in_array 尝试:

add_action( \'save_post\', \'musicreleases_linktype_meta_box_save\' );
function musicreleases_linktype_meta_box_save( $post_id ){
    if( defined( \'DOING_AUTOSAVE\' ) && DOING_AUTOSAVE ) return;
    if( !isset( $_POST[\'meta_box_nonce\'] ) || !wp_verify_nonce( $_POST[\'meta_box_nonce\'], \'my_meta_box_nonce\' ) ) return;
    if( !current_user_can( \'edit_post\' ) ) return;

    //accepted values whitelist
    $allowed = array(\'free\',\'itunes\',\'none\');

    if( isset( $_POST[\'linktype\'] )  && in_array($_POST[\'linktype\'], $allowed))
        update_post_meta( $post_id, \'meta_box_musicreleases_linktype\',  $_POST[\'linktype\'] );
}
这样,只有当值在可接受的“白名单”中时,数据才会被保存,并且将避免任何其他情况。

Update

要在后端显示所选值,您需要修复metabox函数,目前我不知道您在那里尝试了什么,但这里有一个简单的修复

function musicreleases_linktype_meta_box_cb( $post )
{
    $value = get_post_meta( $post->ID,\'meta_box_musicreleases_linktype\',true );
    wp_nonce_field( \'my_meta_box_nonce\', \'meta_box_nonce\' );
    ?>
    <p>
        <input type="radio" name="linktype" value="freedownload_album" <?php echo ($value == \'freedownload_album\')? \'checked="checked"\':\'\'; ?>/> Free<br />
        <input type="radio" name="linktype" value="buyonitunes_album" <?php echo ($value == \'buyonitunes_album\')? \'checked="checked"\':\'\'; ?>/> iTunes<br />
        <input type="radio" name="linktype" value="none_album" <?php echo ($value == \'none_album\')? \'checked="checked"\':\'\'; ?>/> None<br />
    </p>
    <?php   
}

结束