mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
5 lines
201 B
Text
5 lines
201 B
Text
add_filter( 'astra_the_search_page_title', 'my_function', 10 );
|
|
|
|
function my_function() {
|
|
return sprintf( __( 'Add Custom Text Here: %s', 'astra' ), '<span>' . get_search_query() . '</span>' );
|
|
}
|