Skip to content

Instantly share code, notes, and snippets.

@jjeaton
jjeaton / gist:41eedccdd5256cf756ec
Created March 5, 2015 15:28
Search by post slug in the WP Admin
add_filter( 'posts_search', 'jje_search_by_slug', 10, 2 );
/**
* Add post slugs to admin search for a specific post type
*
* Rebuilds the search clauses to include post slugs.
*
* @param string $search
* @param WP_Query $query
* @return string
*/