web-dev-qa-db-ja.com

カスタムメタボックスは、Wordpressのネイティブ投稿エディタと同じようにショートコードを出力することができるべきですか?

簡単に言うと、カスタムメタボックスは、Wordpressのネイティブ投稿エディタと同じ方法でショートコードを出力できますか。

私が尋ねる理由は、私が "Add To Cart"ボタンを出力するためにCart66プラグインからショートコードを入力するために私自身のカスタムメタボックスを作成したためです。 。

私の現在のメタボックス:

<?php
//////////////////////////////////////////////////////////////////////
// Register Custom Post Type Meta Box -- Add To Cart Button Field   //
//////////////////////////////////////////////////////////////////////
add_action( 'add_meta_boxes', 'store_button_meta_box_add' );
function store_button_meta_box_add()
{
    add_meta_box( 'epr_store_button_meta_id', 'Add To Cart Button [shortcode]', 'store_button_meta_box_cb', 'epr_store', 'side', 'high' );
}

function store_button_meta_box_cb( $post )
{
    $values = get_post_custom( $post->ID );
    $button = isset( $values['meta_box_button_shortcode'] ) ? esc_attr( $values['meta_box_button_shortcode'][0] ) : '';
    wp_nonce_field( 'my_meta_box_nonce', 'meta_box_nonce' );
    ?>
    <p>
        <textarea name="meta_box_button_shortcode" id="meta_box_button_shortcode" row="5" style="width:100%; height:100px;text-align:left;"><?php echo esc_textarea($button); ?></textarea>
    </p>
    <?php   
}


add_action( 'save_post', 'epr_button_meta_box_save' );
function epr_button_meta_box_save( $post_id )
{
    // Bail if we're doing an auto save
    if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return;

    // if our nonce isn't there, or we can't verify it, bail
    if( !isset( $_POST['meta_box_nonce'] ) || !wp_verify_nonce( $_POST['meta_box_nonce'], 'my_meta_box_nonce' ) ) return;

    // if our current user can't edit this post, bail
    if( !current_user_can( 'edit_post' ) ) return;

    // now we can actually save the data
    $allowed = array( 
        'a' => array( // on allow a tags
            'href' => array() // and those anchords can only have href attribute
        )
    );

    // Probably a good idea to make sure your data is set
    if( isset( $_POST['meta_box_button_shortcode'] ) )
        update_post_meta( $post_id, 'meta_box_button_shortcode', wp_kses( $_POST['meta_box_button_shortcode'], $allowed ) );
}
?>
1
Mr.Brown

短い答え:no

ショートコードはコンテンツを挿入するためのものです投稿コンテンツに直接、投稿編集画面からユーザーによって。

データがメタボックスから送信される場合、投稿コンテンツにコンテンツを挿入する他の、より良い、より効率的で制御しやすい手段があります。主に、the_contentフィルター(一般的な使用)、またはカスタムアクションフック(それらを提供するテーマ用)。

the_contentフィルターを使用してコードを追加するのは簡単です。

function my_plugin_filter_the_content( $content ) {
    // Get post custom meta
    $values = get_post_custom( $post->ID );
    // Determine if shortcode meta is set
    $my_custom_content = isset( $values['meta_box_button_shortcode'] ) ? esc_attr( $values['meta_box_button_shortcode'][0] ) : '';
    // Tell WordPress to execute the shortcode
    $custom_shortcode_output = do_shortcode( $my_custom_content );
    // Append the executed shortcode to $content
    $content .= $custom_shortcode_output;
    // Return modified $content
    return $content;
}
add_filter( 'the_content', 'my_plugin_filter_the_content' );

ショートコードは不要です。

また、フィルターを使用すると、ユーザーがプラグインを無効にした場合にショートコードが孤立することを心配する必要がありません。

、特定のショートコードを出力する必要がある場合は、 do_shortcode( '[shortcode_name att="value"]' )を使用できます。

1
Chip Bennett