mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
10 lines
413 B
Text
10 lines
413 B
Text
<?php
|
|
function default_strings_callback( $strings ) {
|
|
// Search nothing found string
|
|
$strings['string-search-nothing-found-message'] = __( 'Sorry, There is no Search Result found.', 'astra' );
|
|
// Search input box placeholder
|
|
$strings['string-search-input-placeholder'] = __( 'Search ...', 'astra' );
|
|
return $strings;
|
|
}
|
|
add_filter( 'astra_default_strings', 'default_strings_callback', 10 );
|
|
?>
|