Archived topic
Removing title from search results page
3 replies · Started by Christian on March 25, 2023
Viewing posts 1–4 of 4
I have used the following snippet to remove the title from my archive pages:
add_action( 'wp', 'lh_remove_archive_title' );
function lh_remove_archive_title() {
remove_action( 'generate_archive_title', 'generate_archive_title' );
}
This works great. My question is, is it possible to remove the title from the search results page in the same way? (i.e. remove the entire text where it says 'Search results for: "whatever it is"'
Regards,
Chris
Hi there,
try:
add_action( 'wp', 'lh_remove_archive_title' );
function lh_remove_archive_title() {
remove_action( 'generate_archive_title', 'generate_archive_title' );
remove_action( 'generate_before_loop', 'generate_do_search_results_title' );
}
Worked very well - thanks.
Glad to hear that
This archived topic is closed to new replies.