/**
* Получает список иерархических линий терминов для указанного или текущего поста в цикле.
*
* Возвращается ассоциативный массив вида id => строка id терминов разделенных символом "-" (минус)
*
* @param string $taxonomy Название таксономии
* @param integer/object [$post_id = 0] ID или объект поста
*
* @return array Массив id=>hi_line
*/
function get_unique_deep_term_ids( $taxonomy, $post_id = 0 ) {
if ( isset( $post_id->ID ) ) {
$post_id = $post_id->ID;
}
if ( ! $post_id ) {
$post_id = get_the_ID();
}
$terms = get_the_terms( $post_id, $taxonomy );
if ( ! $terms || is_wp_error( $terms ) ) {
return array();
}
$hierarchies = array();
foreach ( $terms as $term ) {
$ancestors = get_ancestors( $term->term_id, 'product_cat' );
array_unshift( $ancestors, $term->term_id );
$hierarchies[ $term->term_id ] = implode( '-', array_reverse( $ancestors ) );
}
arsort( $hierarchies, SORT_STRING );
$old = '';
$hierarchies = array_filter( $hierarchies, function ( $value ) use ( &$old ) {
$success = false === strpos( $old, $value );
$old = $value;
return $success;
} );
return $hierarchies;
}
/** @var WC_Product $product */
global $product;
$hi_lines = get_unique_deep_term_ids( 'product_cat', $product->get_id() );
foreach ( $hi_lines as $key => $value ) {
$hi_lines[ $key ] = get_term_parents_list( $key, 'product_cat', $args = array( 'separator' => ' / ' ) );
}
...
// Взято по аналогии из шаблона woocommerce/single-product/meta.php
<?php echo '<div class="posted_in">' . _n( 'Category:', 'Categories:', count( $product->get_category_ids() ), 'woocommerce' ) . '<br>' . implode('<br>', $hi_lines) . '</div>' ?>
global $product;
$hi_lines = get_unique_deep_term_ids( 'product_cat', $product->get_id() );
foreach ( $hi_lines as $key => $value ) {
$hi_lines[ $key ] = get_term_parents_list( $key, 'product_cat', $args = array( 'separator' => ' / ' ) );
}
echo '<div class="posted_in">' . _n( 'Category:', 'Categories:', count( $product->get_category_ids() ), 'woocommerce' ) . '<br>' . implode('<br>', $hi_lines) . '</div>'
function pc_handler_woo_product_meta_end(){
/** @var WC_Product $product */
global $product;
$hi_lines = get_unique_deep_term_ids( 'product_cat', $product->get_id() );
foreach ( $hi_lines as $key => $value ) {
$hi_lines[ $key ] = get_term_parents_list( $key, 'product_cat', $args = array( 'separator' => ' / ' ) );
}
// Взято по аналогии из шаблона woocommerce/single-product/meta.php
echo '<div class="posted_in">' . _n( 'Category:', 'Categories:', count( $product->get_category_ids() ), 'woocommerce' ) . '<br>' . implode('<br>', $hi_lines) . '</div>';
}
add_action( 'woocommerce_product_meta_end', 'pc_handler_woo_product_meta_end' );
Fatal error: Uncaught Error: Call to a member function get_id() on null in /home/k/mydomen/site.ru/public_html/site10/wp-content/themes/prorab/woocommerce/cart/cart.php:67 Stack trace: #0 /home/k/mydomen/site.ru/public_html/site10/wp-content/plugins/woocommerce/includes/wc-core-functions.php(251): include() #1 /home/k/mydomen/site.ru/public_html/site10/wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-cart.php(99): wc_get_template('cart/cart.php') #2 /home/k/mydomen/site.ru/public_html/site10/wp-content/plugins/woocommerce/includes/class-wc-shortcodes.php(72): WC_Shortcode_Cart::output(Array) #3 /home/k/mydomen/site.ru/public_html/site10/wp-content/plugins/woocommerce/includes/class-wc-shortcodes.php(85): WC_Shortcodes::shortcode_wrapper(Array) #4 /home/k/mydomen/site.ru/public_html/site10/wp-includes/shortcodes.php(343): WC_Shortcodes::cart('', '', 'woocommerce_car...') #5 [internal function]: do_shortcode_tag(Array) #6 /home/k/mydomen/site in /home/k/mydomen/site.ru/public_html/site10/wp-content/themes/prorab/woocommerce/cart/cart.php on line 67
global $product;
не определен в шаблоне. Но в этом шаблоне в цикле вывода товаров опрделена переменная $_product.global $product;
следующее $product = wc_get_product( $_product->get_parent_id());
и все станет на места.Fatal error: Uncaught Error:
Call to a member function get_id() on null in /public_html/site10/wp-content/themes/prorabs-dream/functions.php:444
Stack trace:
#0 /public_html/site10/wp-includes/class-wp-hook.php(287): pc_handler_woo_product_meta_end('')
#1 /public_html/site10/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters('', Array)
#2 /public_html/site10/wp-includes/plugin.php(478): WP_Hook->do_action(Array)
#3 /public_html/site10/wp-content/themes/prorabs-dream/woocommerce/cart/cart.php(66): do_action('cart_product_ca...')
#4 /public_html/site10/wp-content/plugins/woocommerce/includes/wc-core-functions.php(251): include('/home/k/...')
#5 /public_html/site10/wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-cart.php(99): wc_get_template('cart/cart.php')
#6 /public_html/site10/wp-content/themes/prorabs-dream/functions.php on line 444
Notice:
Undefined variable: _product in /public_html/site10/wp-content/themes/prorabs-dream/functions.php on line 442
Fatal error:
Uncaught Error: Call to a member function get_parent_id() on null in /public_html/site10/wp-content/themes/prorabs-dream/functions.php:442
Stack trace:
#0 /public_html/site10/wp-includes/class-wp-hook.php(287): pc_handler_woo_product_meta_end('')
#1 /public_html/site10/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters('', Array)
#2 /public_html/site10/wp-includes/plugin.php(478): WP_Hook->do_action(Array)
#3 /public_html/site10/wp-content/themes/prorabs-dream/woocommerce/cart/cart.php(66): do_action('cart_product_ca...')
#4 /public_html/site10/wp-content/plugins/woocommerce/includes/wc-core-functions.php(251): include('/public_html...')
#5 /public_html/site10/wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-cart.php(99): wc_get_template('cart/cart.php')
#6 in /public_html/site10/wp-content/themes/prorabs-dream/functions.php on line 442