get_search_link()
Retrieves the permalink for a search.
Uses: get_search_query()
1 time — 0.000102 sec (fast) | 50000 times — 2.75 sec (fast)
Hooks from the function
Return
String
. The search permalink.
Usage
get_search_link( $query );
- $query(string)
- The query string to use. If empty the current query is used.
Default: ''
Examples
#1 We get a link to the search page with a search query
echo get_search_link( 'something' ); // http://example.com/search/something echo get_search_link( 'foo " bar' ); // http://example.com/search/foo+%22+bar
Notes
- Global. WP_Rewrite. $wp_rewrite WordPress rewrite component.
Changelog
Since 3.0.0 | Introduced. |