php 标题占位符“在这里输入标题”#CPT #white

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 标题占位符“在这里输入标题”#CPT #white相关的知识,希望对你有一定的参考价值。

//Replace ‘Enter Title Here’ Placeholder Text in Post
function change_title_placeholdertext( $title ){
       $screen = get_current_screen();
  \!h     if  ( '__post type slug__' == $screen->post_type ) { //add slug of the post type you want to change
  \!h           $title = '__Enter New Title Prompt Here__'; //Enter new title
       }
       return $title;
  }
add_filter( 'enter_title_here', 'change_title_placeholdertext' );

以上是关于php 标题占位符“在这里输入标题”#CPT #white的主要内容,如果未能解决你的问题,请参考以下文章