Advertisement
salmancreation

How to Change default “Enter title here” text within post ti

Aug 10th, 2015
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. Adding this snippet to the functions.php of your wordpress theme will let you change the default “Enter title here” text that is displayed within post title input field
  2. <?php
  3. function title_text_input( $title ){
  4.      return $title = 'Enter new title';
  5. }
  6. add_filter( 'enter_title_here', 'title_text_input' );
  7. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement