在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
*/
?>

我知道如何过滤掉,但如何将自定义字段添加到该列表中?

还是有完全不同的方式来实现我所需要的?

衷心感谢任何可以提供帮助的人。

Answers:


5

要回答您的第一个问题,以post meta这种方式让您的»bookauthor«可以回显/显示出来。如果您$id在代码中正确定义了变量-或可以如下所示进行操作。

该代码应回答您的第二个问题,即如何通过钩子将第二个标题行插入产品页面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建议的操作,并将metabox添加到产品编辑屏幕中,但是当然没有必要,您似乎知道如何使用标准的wordpress 自定义字段metabox


您可以像这样添加元框,该代码基于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与6作为优先事项是什么会把字幕权的正规标题后(其中有5个优先级)。万一OP不想添加自己的metabox,我已经写了一个字幕插件来保存数据。
helgatheviking

3

您可以在产品信息中添加一个额外的metabox。该元框应具有输入形式,以便您可以输入副标题。添加元框后,在保存产品时将值保存在post_meta中,然后在woocommerce模板的单个产品页面中使用代码

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

为拿到它,为实现它。

你可以找到关于metaboxess信息在这里并且还这里


或使用“高级自定义字段”或搜索我们的档案
brasofilo

+1,但请勿发布指向外部资源的链接。如果需要这样做,还请召唤目标中写入的内容(代码)。
kaiser
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.