Advertisement
salmancreation

enter_title_here wp change

Oct 8th, 2018
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. add_filter( 'enter_title_here', 'custom_enter_title' );
  2. function custom_enter_title( $input ) {
  3.     if ( 'speaker' === get_post_type() ) {
  4.         return __( 'Speaker Name Here', 'eventtheme' );
  5.     }
  6.  
  7.     return $input;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement