WP_Themes_List_Table::search_theme()publicWP 1.0

Method of the class: WP_Themes_List_Table{}

No Hooks.

Return

true|false.

Usage

$WP_Themes_List_Table = new WP_Themes_List_Table();
$WP_Themes_List_Table->search_theme( $theme );
$theme(WP_Theme) (required)
-

WP_Themes_List_Table::search_theme() code WP 6.4.3

public function search_theme( $theme ) {
	// Search the features.
	foreach ( $this->features as $word ) {
		if ( ! in_array( $word, $theme->get( 'Tags' ), true ) ) {
			return false;
		}
	}

	// Match all phrases.
	foreach ( $this->search_terms as $word ) {
		if ( in_array( $word, $theme->get( 'Tags' ), true ) ) {
			continue;
		}

		foreach ( array( 'Name', 'Description', 'Author', 'AuthorURI' ) as $header ) {
			// Don't mark up; Do translate.
			if ( false !== stripos( strip_tags( $theme->display( $header, false, true ) ), $word ) ) {
				continue 2;
			}
		}

		if ( false !== stripos( $theme->get_stylesheet(), $word ) ) {
			continue;
		}

		if ( false !== stripos( $theme->get_template(), $word ) ) {
			continue;
		}

		return false;
	}

	return true;
}