mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
7 lines
223 B
Text
7 lines
223 B
Text
add_filter( 'elementor/utils/get_the_archive_title','archive_callback' );
|
|
function archive_callback( $title ) {
|
|
if ( is_search() ) {
|
|
return 'Your Custom Message Here: ' . get_search_query() ;
|
|
}
|
|
return $title;
|
|
}
|