Как получить ссылку на категорию продукта WooCommerce по идентификатору?
3 ответ
- голосов
-
- 2014-10-03
Еще одно обновление (сентябрь 2015 г.):
Я могу использовать
get_term_link
в конце концов. Проблема заключалась в том,что строку нужно было преобразовать в целое число. Использовал совет по переполнению стека для наиболее быстрого способа его преобразования с использованием значения (int) $ в PHP.Если вы не хотите использовать ярлык в циклеforeach,это будет выглядеть так:
$woo_cat_id_int = (int)$woo_cat_id; //convert
Это преобразованное значение используется вместо заголовка в
get_term_link
. Надеюсь,это кому-то поможет. :-)
Похоже,я понял.
Я использовал get_term_link . И я получал сообщение об ошибке,потому что использовал его таким образом:
get_term_link( $woo_cat_id, 'product_cat' );
Что дало мне эту ошибку:
<цитата>Объект класса WP_Error не удалось преобразовать в строку
Поэтому я пошел по этому пути с
slug
,и он сработал:$prod_cat_args = array( 'taxonomy' => 'product_cat', //woocommerce 'orderby' => 'name', 'empty' => 0 ); $woo_categories = get_categories( $prod_cat_args ); foreach ( $woo_categories as $woo_cat ) { $woo_cat_id = $woo_cat->term_id; //category ID $woo_cat_name = $woo_cat->name; //category name $woo_cat_slug = $woo_cat->slug; //category slug $return .= '<a href="' . get_term_link( $woo_cat_slug, 'product_cat' ) . '">' . $woo_cat_name . '</a>'; }//end of $woo_categories foreach
Another update (Sept. 2015):
I can use
get_term_link
after all. The problem was that the string needed to be converted to an integer. Used a Stack Overflow tip for the fastest way to convert it using the (int)$value in PHP.So it would look like this if you don't want to use the slug in the foreach loop:
$woo_cat_id_int = (int)$woo_cat_id; //convert
That converted value is used instead of the slug in
get_term_link
. Hope it helps someone. :-)
Looks like I figured it out.
I used get_term_link. And I was getting an error because I was using it this way:
get_term_link( $woo_cat_id, 'product_cat' );
Which gave me this error:
Object of class WP_Error could not be converted to string
So I went this route instead with the
slug
and it worked:$prod_cat_args = array( 'taxonomy' => 'product_cat', //woocommerce 'orderby' => 'name', 'empty' => 0 ); $woo_categories = get_categories( $prod_cat_args ); foreach ( $woo_categories as $woo_cat ) { $woo_cat_id = $woo_cat->term_id; //category ID $woo_cat_name = $woo_cat->name; //category name $woo_cat_slug = $woo_cat->slug; //category slug $return .= '<a href="' . get_term_link( $woo_cat_slug, 'product_cat' ) . '">' . $woo_cat_name . '</a>'; }//end of $woo_categories foreach
-
Хотя я до сих пор не понимаю,почему он не берет ID,а берет пулю.Кодекс говорит,чтоget_term_link должен принимать ID ...Although I still don't understand why it won't take the ID but it takes the slug. The Codex says get_term_link should take the ID...
- 1
- 2014-10-03
- RachieVee
-
Не имеет смысла - действительно должен работать с идентификатором ... большое спасибоMakes zero sense - should work with the id indeed... many thanks
- 1
- 2014-11-19
- akmur
-
Term_id - это строка объекта.Чтобы использовать его с функцией ссылкиget term,вам нужно сначала проанализировать его как целое число `get_term_link (intval ($ woo_cat->term_id),'product_cat')`Term_id is a string on the object. To use it with the get term link function you need to parse it as an integer first `get_term_link( intval($woo_cat->term_id), 'product_cat' )`
- 3
- 2015-01-28
- forsvunnet
-
Решение отforsvunnet отлично меня разбудилоThe solution by forsvunnet woked perfectly for me
- 0
- 2016-08-31
- Shane Jones
-
- 2014-12-16
Спасибо,использую
foreach ( $terms as $term ) { $term_link = get_term_link( $term ); echo '<li><a href="' . esc_url( $term_link ) . '">' . $term->name . '</a></li>'; }
Работает отлично.
Thanks, I use
foreach ( $terms as $term ) { $term_link = get_term_link( $term ); echo '<li><a href="' . esc_url( $term_link ) . '">' . $term->name . '</a></li>'; }
It works perfectly.
-
- 2015-09-18
$prod_cat_args = array( 'taxonomy' => 'product_cat', //woocommerce 'orderby' => 'name', 'empty' => 0 ); $terms = get_categories( $prod_cat_args ); //$term_id=6; foreach ( $terms as $term ) { $term_link = get_term_link( $term ); echo '<li><a class="shopping-now" href="' . esc_url( $term_link ) . '">' . $term->name . '</a></li>'; }
get_term_link()
работает плавно при использовании объекта.возвращаетсяget_categories()
.$prod_cat_args = array( 'taxonomy' => 'product_cat', //woocommerce 'orderby' => 'name', 'empty' => 0 ); $terms = get_categories( $prod_cat_args ); //$term_id=6; foreach ( $terms as $term ) { $term_link = get_term_link( $term ); echo '<li><a class="shopping-now" href="' . esc_url( $term_link ) . '">' . $term->name . '</a></li>'; }
get_term_link()
does work smoothly, when using the object returned byget_categories()
.
Категории продуктов WooCommerce представляют собой настраиваемую таксономию под названием
product_cat
. В функции,которую я пишу,я используюget_categories
с параметромtaxonomy
,установленным наproduct_cat
. Все работает нормально,и я могу получить идентификатор термина,имя и даже слаг. Я не могу понять,как отобразить ссылку. Очевидно,get_category_link
не работает с настраиваемой таксономией,иget_term_link
тоже не работает,я получаю сообщение об ошибке. Вот что у меня есть:Есть предложения?