我正在创建自定义帖子类型,并希望在“创建新帖子”部分的标题字段中操作占位符文本。
要求:
- 它只能用于一种特定的帖子类型,而不适用于所有帖子
- 它不能反映帖子类型的名称,它必须是完全自定义的文本
- 它不必从wordpress管理部分编辑,自定义文本可以放在functions.php文件的函数中。
答案 0 :(得分:3)
您可以将此代码段放在functions.php
中function change_default_title( $title ){
$screen = get_current_screen();
if ( 'your_custom_post_type' == $screen->post_type ){
$title = 'Your custom placeholder text';
}
return $title;
}
add_filter( 'enter_title_here', 'change_default_title' );
这应该改变标题。