是的,当然你可以通过使用enter_title_here
过滤器挂钩。
add_filter(\'enter_title_here\', \'my_title_place_holder\' , 20 , 2 );
function my_title_place_holder($title , $post){
if( $post->post_type == \'portfolio\' ){
$my_title = "Add new Portfolio";
return $my_title;
}
return $title;
}