WC_API_Products::get_product_tags()
Get a listing of product tags.
Метод класса: WC_API_Products{}
Хуки из метода
Возвращает
Массив|WP_Error
.
Использование
$WC_API_Products = new WC_API_Products(); $WC_API_Products->get_product_tags( $fields );
- $fields(строка|null)
- Fields to limit response to
По умолчанию: null
Список изменений
С версии 2.5.0 | Введена. |
Код WC_API_Products::get_product_tags() WC API Products::get product tags WC 8.1.1
public function get_product_tags( $fields = null ) { try { // Permissions check if ( ! current_user_can( 'manage_product_terms' ) ) { throw new WC_API_Exception( 'woocommerce_api_user_cannot_read_product_tags', __( 'You do not have permission to read product tags', 'woocommerce' ), 401 ); } $product_tags = array(); $terms = get_terms( 'product_tag', array( 'hide_empty' => false, 'fields' => 'ids' ) ); foreach ( $terms as $term_id ) { $product_tags[] = current( $this->get_product_tag( $term_id, $fields ) ); } return array( 'product_tags' => apply_filters( 'woocommerce_api_product_tags_response', $product_tags, $terms, $fields, $this ) ); } catch ( WC_API_Exception $e ) { return new WP_Error( $e->getErrorCode(), $e->getMessage(), array( 'status' => $e->getCode() ) ); } }