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

Posted

tags:

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

<?php

function PREFIX_change_title_text( $title ){
     $screen = get_current_screen();
  
     if  ( 'events' == $screen->post_type ) { // Replace 'events' with key of your custom post type
          $title = 'Enter event name with date';
     }
  
     return $title;
}
  
add_filter( 'enter_title_here', 'PREFIX_change_title_text' );

以上是关于php 替换“在此处输入标题”占位符文本的主要内容,如果未能解决你的问题,请参考以下文章