Automattic\WooCommerce\Blocks\BlockTypes
FeaturedCategory::get_item_image()
Returns the featured category image URL.
Метод класса: FeaturedCategory{}
Хуков нет.
Возвращает
Строку
.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_item_image( $category, $size );
- $category(\WP_Term) (обязательный)
- Term object.
- $size(строка)
- Image size.
По умолчанию: 'full'
Код FeaturedCategory::get_item_image() FeaturedCategory::get item image WC 9.3.3
protected function get_item_image( $category, $size = 'full' ) { $image = ''; $image_id = get_term_meta( $category->term_id, 'thumbnail_id', true ); if ( $image_id ) { $image = wp_get_attachment_image_url( $image_id, $size ); } return $image; }