PHP Notice: Trying to get property 'ID' of non-object in myfile.php on line 17
function myfun( $price ) {
global $post;
$terms = get_the_terms( $post->ID, 'product_cat' ); // <-17 строка
if( $terms ){
//...
}
return $price;
}
add_filter( 'woocommerce_get_price_html', 'myfun' );