Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Created December 30, 2014 10:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kaiderella/810bfedc72878a6ed196 to your computer and use it in GitHub Desktop.
Save Kaiderella/810bfedc72878a6ed196 to your computer and use it in GitHub Desktop.
Tùy biến dòng chữ trong khung nhập dữ liệu tìm kiếm của Genesis
//* Tùy biến dòng chữ trong khung nhập dữ liệu tìm kiếm của Genesis
add_filter( 'genesis_search_text', 'sp_search_text' );
function sp_search_text( $text ) {
return esc_attr( 'Tìm kiếm trên blog của tôi...' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment