【问题标题】:Output grid of child category thumbnails and custom URL子类别缩略图和自定义 URL 的输出网格
【发布时间】:2021-04-19 17:18:27
【问题描述】:

我在 WooCommerce 中有一个名为 Dealers (ID 93) 的产品类别。该产品类别目前有大约 50 个孩子,每个孩子都有一个徽标作为其缩略图。我在每个类别上添加了一个自定义字段,以将 URL 粘贴到经销商网站。我想创建一个自动填充这些子类别并显示缩略图网格的页面。我希望每个缩略图都链接到dealer_website URL 并在新窗口中打开。

这是我用来向产品类别添加自定义元字段的代码:

// Custom field for product categories
// Add term page
function custom_product_taxonomy_add_new_meta_field() {
    // this will add the custom meta field to the add new term page
    ?>
    <div class="form-field">
        <label for="term_meta[custom_term_meta]"><?php _e( 'Dealer Website', 'dealer_website' ); ?></label>
        <input type="text" name="term_meta[custom_term_meta]" id="term_meta[custom_term_meta]" value="">
        <p class="description"><?php _e( 'Make sure to include the whole URL here','dealer_website' ); ?></p>
    </div>
<?php
}
add_action( 'product_cat_add_form_fields', 'custom_product_taxonomy_add_new_meta_field', 10, 2 );
// Edit term page
function custom_product_taxonomy_edit_meta_field($term) {

    // put the term ID into a variable
    $t_id = $term->term_id;

    // retrieve the existing value(s) for this meta field. This returns an array
    $term_meta = get_option( "taxonomy_$t_id" ); ?>
    <tr class="form-field">
    <th scope="row" valign="top"><label for="term_meta[custom_term_meta]"><?php _e( 'Dealer Website', 'dealer_website' ); ?></label></th>
        <td>
            <input type="text" name="term_meta[custom_term_meta]" id="term_meta[custom_term_meta]" value="<?php echo esc_attr( $term_meta['custom_term_meta'] ) ? esc_attr( $term_meta['custom_term_meta'] ) : ''; ?>">
            <p class="description"><?php _e( 'Make sure to include the whole URL here','dealer_website' ); ?></p>
        </td>
    </tr>
<?php
}
add_action( 'product_cat_edit_form_fields', 'custom_product_taxonomy_edit_meta_field', 10, 2 );
// Save extra taxonomy fields callback function.
function save_taxonomy_custom_meta( $term_id ) {
    if ( isset( $_POST['term_meta'] ) ) {
        $t_id = $term_id;
        $term_meta = get_option( "taxonomy_$t_id" );
        $cat_keys = array_keys( $_POST['term_meta'] );
        foreach ( $cat_keys as $key ) {
            if ( isset ( $_POST['term_meta'][$key] ) ) {
                $term_meta[$key] = $_POST['term_meta'][$key];
            }
        }
        // Save the option array.
        update_option( "taxonomy_$t_id", $term_meta );
    }
}  
add_action( 'edited_product_cat', 'save_taxonomy_custom_meta', 10, 2 );  
add_action( 'create_product_cat', 'save_taxonomy_custom_meta', 10, 2 );

这部分工作得很好,但我不知道如何让它输出到自定义页面模板上的缩略图网格中,所有链接到dealer_url并在新窗口中打开它。

我现在正在使用简码来获得一部分,但我不知道如何提取dealer_website url而不是类别url:

[product_categories parent="93" columns="5" number="100" hide_empty="0"]

【问题讨论】:

    标签: php wordpress woocommerce categories meta


    【解决方案1】:
    1. 获取子术语对象

      $terms_objects = get_terms(
           array(
              'taxonomy'   => 'product_cat',
              'child_of'   => 93,
              'hide_empty' => false,
           )
      );
      
    2. 遍历缩略图网格内的术语对象,获取经销商 URL 字段和缩略图 ID,然后是缩略图 URL

      // Loop over the childrens.
       foreach( $terms_objects as $term_object ) {
           $dealer_url         = get_option( 'taxonomy_' . $term_object->term_id );
           $term_thumbnail_id  = get_term_meta( $term_object->term_id, 'thumbnail_id', true );
           $term_thumbnail_url = ( ! empty( $term_thumbnail_id ) && is_numeric( $term_thumbnail_id ) ) ? wp_get_attachment_image_url( (int) $term_thumbnail_id, 'thumbnail' ) : '';
      
      
           // check if the $term_thumnail_url and the $dealer_url are not empty then the rest is HTML 
            if ( ! empty( $term_thumbnail_url ) && ! empty( $dealer_url ) ) {
            ?>
                <a href="<?php echo esc_url( $dealer_url ); ?>" target="_blank" ><img src="<?php echo esc_url( $term_thumbnail_url ); ?>" ></a>
            <?php
            }
       }
      

    对于经销商 URL 字段,最好使用 termmeta 表而不是选项表。

    【讨论】:

    猜你喜欢
    相关资源
    最近更新 更多
    热门标签