Archived topic
Restrict shortcode search to a custom post type
2 replies · Started by George on July 9, 2022
I am using the following shortcode found on this thread to display a search element on a page. Is it possible to restrict that shortcode to only search to a custom post type named Courses?
Hi George,
ok, if you want all instances where the get_search_form is output then you can use its filter hook:
https://developer.wordpress.org/reference/hooks/get_search_form/
But seeing as that filter i don't think is used in the Search Block, then i would probably write my own form. See Tom's reply here for an example:
https://generatepress.com/forums/topic/limit-custom-search-results/#post-1422120
Yeah, that was a good pointer, thanks!