здравствуйте. подскажите, почему не работает функция is_shop() в хуке posts_clauses?
add_filter('posts_clauses', 'order_by_stock_status', 10, 2);
function order_by_stock_status($posts_clauses, $query) {
if(is_shop()){
}
return $posts_clauses;
}
E_NOTICE Trying to get property 'ID' of non-object /wp-includes/class-wp-query.php:4019
в функции is_shop() вызывается is_page, почему она не работает?