Skip to content

Instantly share code, notes, and snippets.

@pascalmaddin
Created June 11, 2013 08:35
Show Gist options
  • Save pascalmaddin/5755329 to your computer and use it in GitHub Desktop.
Save pascalmaddin/5755329 to your computer and use it in GitHub Desktop.
WordPress - Change default “Enter title here” text within post title input field
<?php
function title_text_input( $title ){
return $title = 'Enter new title';
}
add_filter( 'enter_title_here', 'title_text_input' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment