رفتن به مطلب

آدرس تگ محصولات


اعظم

پست های پیشنهاد شده

با سلام

من از این کد استفاده می کنم که تگ محصولات رو نمایش می ده ولی آدرس تمام تگ ها، ادرس سایت است نه آدرس ان محصول خاص:

function wpb_tag_cloud() {
    $tags = get_terms( 'product_tag' );
    $args = array(
        'smallest' => 10,
        'largest' => 22,
        'unit' => 'px',
        'number' => 10,
        'format' => 'flat',
        'separator' => " ",
        'orderby' => 'count',
        'order' => 'DESC',
        'show_count' => 1,
        'echo' => false
    );
    $tag_string = wp_generate_tag_cloud( $tags, $args );
    return $tag_string;
}

// Add a shortcode so that we can use it in widgets, posts, and pages
add_shortcode('wpb_popular_tags', 'wpb_tag_cloud');

// Enable shortcode execution in text widget
add_filter ('widget_text', 'do_shortcode'); 

 

لینک به ارسال

سلام

 

این کد رو جایگزین کد خودتون کنید.

function wpb_tag_cloud() {
    $args = array(
        'taxonomy' => 'product_tag',
        'smallest' => 10,
        'largest' => 22,
        'unit' => 'px',
        'number' => 10,
        'separator' => " ",
        'orderby' => 'count',
        'order' => 'DESC',
        'echo' => false
    );
    $tag_string = wp_tag_cloud($args);
    return $tag_string;
}

// Add a shortcode so that we can use it in widgets, posts, and pages
add_shortcode('wpb_popular_tags', 'wpb_tag_cloud');

// Enable shortcode execution in text widget
add_filter('widget_text', 'do_shortcode');

 

ویرایش شده توسط mehran-b
  • امتیاز 1
لینک به ارسال

لطفا برای ارسال دیدگاه وارد شوید

شما بعد از اینکه وارد حساب کاربری خود شدید می توانید دیدگاهی ارسال کنید



ورود به حساب کاربری
×
×
  • اضافه کردن...