Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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
- <?php
- function title_text_input( $title ){
- return $title = 'Enter new title';
- }
- add_filter( 'enter_title_here', 'title_text_input' );
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement