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的主要内容,如果未能解决你的问题,请参考以下文章

用 PHP 替换多个占位符?

php 替换“在此处输入标题”占位符文本

php 更改帖子标题字段的占位符文本。

Tensorflow:用 tf.Variable 替换/提供图形的占位符?

php 在自定义类型中重命名标题占位符

如何在 UITextView 中插入占位符? [复制]