Warning: This method has been deprecated. – Not needed anymore since WordPress 4.5 instead.

WC_Query::search_post_excerpt( string $where = '' )

Search post excerpt.


Description Description


Parameters Parameters

$where

(Optional) Where clause.

Default value: ''


Top ↑

Source Source

File: includes/class-wc-query.php

	public function search_post_excerpt( $where = '' ) {
		wc_deprecated_function( 'WC_Query::search_post_excerpt', '3.2.0', 'Excerpt added to search query by default since WordPress 4.5.' );
		return $where;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.2.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.