Woocommerce製品のタイトルにサブタイトルを追加します


8

Pagelines Frameworkで構築されたサイトでWooCommerceを使用しています。サイトのどこにでも、商品名の下にサブタイトル/カスタマイズ可能なフィールドを表示する必要があります。現状では、WooCommerceはそのオプションを提供していません。

私はカスタムフィールドを使用しようとしましたが、WooCommerceもこれらを使用し、不要なものをサブタイトルと共に出力します。カスタムフィールドに "bookauthor"という名前を付けた場合、このコードは必要なカスタムフィールドのみを表示するように機能しますか?

<?php echo get_post_meta($id, "bookauthor", true); ?>

もしそうなら、フロントエンドの製品タイトルの直後に新しいフィールドを出力するにはどうすればよいですか?

私はこのphpファイルで必要なフックを見つけました(私はphpがわからないと思います。そのため、私はあなたに尋ねています)。

    <?php 
/*
  * @hooked woocommerce_template_single_title - 5
  * @hooked woocommerce_template_single_price - 10
  * @hooked woocommerce_template_single_excerpt - 20
  * @hooked woocommerce_template_single_add_to_cart - 30
  * @hooked woocommerce_template_single_meta - 40
  * @hooked woocommerce_template_single_sharing - 50
*/
?>

フィルターで除外する方法は知っていますが、カスタムフィールドをそのリストに追加するにはどうすればよいですか?

または、私が必要とするものを達成するためのまったく異なる方法はありますか?

助けることができる誰にも不変の感謝。

回答:


5

最初の質問に答えるには、post meta»bookauthor«をこの方法で取得すると、それだけがエコー/表示されます。$idコードで変数を正しく定義している場合-または、以下に示すように定義できます。

コードは2番目の質問、2番目のタイトル行をフックを介して製品ページに挿入する方法に答える必要がありますwoocommerce_single_product_summary。次のような追加情報を追加するだけです。

    function wpse116660_wc_add_2nd_title() {
        ?>
        <div class="2nd-tile">
            <?php echo get_post_meta(get_the_ID(), "bookauthor", true); ?>
        </div>
        <?php
    }
    add_action( 'woocommerce_single_product_summary', 'wpse116660_wc_add_2nd_title', 6 );

カスタムポストメタをさらに快適にするには、@ pl4g4と@brasofiloが提案したことを実行し、メタボックスを製品編集画面に追加できますが、必ずしも必要ではありませんが、標準のワードプレスカスタムでそれを行う方法を知っているようです。フィールドメタボックス


このようにメタボックスを追加できます。コードは、add_meta_box wordpress codexページの最初の例に基づいています。

/**
 * Adds a box to the main column on the Post and Page edit screens.
 */
function wpse116660_wc_2nd_title_mb() {

    $screen = array( 'product' );

        add_meta_box(
            'wc_2nd_title_mb',
            __( '2nd title', 'your_textdomain' ),
            'wc_2nd_title_inner_mb',
            $screen,
            'advanced',
            'high'
        );
}
add_action( 'add_meta_boxes', 'wpse116660_wc_2nd_title_mb', 0 );

/**
 * Prints the box content.
 * 
 * @param WP_Post $post The object for the current post/page.
 */
function wpse116660_wc_2nd_title_inner_mb( $post ) {

  // Add an nonce field so we can check for it later.
  wp_nonce_field( 'wc_2nd_title_inner_mb', 'wc_2nd_title_inner_mb_nonce' );

  /*
   * Use get_post_meta() to retrieve an existing value
   * from the database and use the value for the form.
   */
  $value = get_post_meta( $post->ID, 'bookauthor', true );

  echo '<label for="bookauthor_field">';
       _e( "Bookauthor", 'your_textdomain' );
  echo '</label> ';
  echo '<input type="text" id="bookauthor_field" name="bookauthor_field" value="' . esc_attr( $value ) . '" size="50" />';

}

/**
 * When the post is saved, saves our custom data.
 *
 * @param int $post_id The ID of the post being saved.
 */
function wpse116660_wc_2nd_title_save_postdata( $post_id ) {

  /*
   * We need to verify this came from the our screen and with proper authorization,
   * because save_post can be triggered at other times.
   */

  // Check if our nonce is set.
  if ( ! isset( $_POST['wc_2nd_title_inner_mb_nonce'] ) )
    return $post_id;

  $nonce = $_POST['wc_2nd_title_inner_mb_nonce'];

  // Verify that the nonce is valid.
  if ( ! wp_verify_nonce( $nonce, 'wc_2nd_title_inner_mb' ) )
      return $post_id;

  // If this is an autosave, our form has not been submitted, so we don't want to do anything.
  if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) 
      return $post_id;

  // Check the user's permissions.
  if ( 'page' == $_POST['post_type'] ) {

    if ( ! current_user_can( 'edit_page', $post_id ) )
        return $post_id;

  } else {

    if ( ! current_user_can( 'edit_post', $post_id ) )
        return $post_id;
  }

  /* OK, its safe for us to save the data now. */

  // Sanitize user input.
  $mydata = sanitize_text_field( $_POST['bookauthor_field'] );

  // Update the meta field in the database.
  update_post_meta( $post_id, 'bookauthor', $mydata );
}
add_action( 'save_post', 'wpse116660_wc_2nd_title_save_postdata' );

1
+1。add_actionそれはどのような権利(5の優先順位を持っている)、通常のタイトルの後にサブタイトルを置く6の優先度を持ちます。OPが自分のメタボックスを追加したくない場合は、データを保存する字幕プラグインをすでに作成しました。
2013年

3

製品の投稿にメタボックスを追加できます。このメタボックスには、サブタイトルを入力できるように入力フォームが必要です。メタボックスを追加したときに、製品が保存されたときにpost_metaに値を保存し、次にwoocommerceテンプレートの単一の製品ページでコードを使用します

<?php echo get_post_meta($id, "bookauthor", true); ?>

それを得るために。

ここここにもmetaboxessに関する情報があります


または、高度なカスタムフィールドを使用するか、アーカイブを検索してください
ブラソフィロ2013年

+1。ただし、外部ソースへのリンクを投稿しないでください。必要な場合は、ターゲットに書き込まれているもの(コード)も呼び出してください。
カイザー2013年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.