WC_Comments::exclude_order_comments_from_feed_where()
Exclude order comments from queries and RSS.
Метод класса: WC_Comments{}
Хуков нет.
Возвращает
Строку
.
Использование
$result = WC_Comments::exclude_order_comments_from_feed_where( $where );
- $where(строка) (обязательный)
- The WHERE clause of the query.
Код WC_Comments::exclude_order_comments_from_feed_where() WC Comments::exclude order comments from feed where WC 9.4.2
public static function exclude_order_comments_from_feed_where( $where ) { return $where . ( $where ? ' AND ' : '' ) . " comment_type != 'order_note' "; }