Advertisement
salmancreation

How to Replace ‘Enter Title Here’ Text in WordPress

Jan 15th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2. function title_text_input( $title ){
  3. return $title = '<strong>এখানে আপনার নিউজ এর হেডলাইন  লিখুন </strong>';
  4. }
  5. add_filter( 'enter_title_here', 'title_text_input' );
  6.  
  7. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement