Is there an easy way to highlight search results based on post_type?
I am using Job Manager plugin and when a site search is performed, I want to simply add a note e.g. (Job) next to the Job Results.
Is there an easy way to highlight search results based on post_type?
I am using Job Manager plugin and when a site search is performed, I want to simply add a note e.g. (Job) next to the Job Results.
The specifics depend on the theme you're using, but you can use get_post_type() in your search loop to check the post type. Something like this would work:
if ( 'your-custom-post' == get_post_type() ) {
/* Title for this custom post type */
} else {
/* Title for everything else */
}You must log in to post.