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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 更改帖子标题字段的占位符文本。相关的知识,希望对你有一定的参考价值。

<?php

add_filter( 'enter_title_here', 'prefix_change_title_placeholder_text' );
/**
 * Change the placeholder text for the post title field.
 *
 * @param string $title Default placeholder text.
 * @return string
 */
function prefix_title_placeholder_text( $title ) {
	$post_type_object = get_post_type_object( get_post_type() );

	if ( empty( $post_type_object->title_placeholder ) ) {
		return $title;
	}

	return $post_type_object->title_placeholder;
}
<?php

// Add 'title_placeholder' to the array of arguments when registering the custom post type.
$cpt_args = array(
	'title_placeholder' => 'Team member name',
);

register_post_type( 'team_members', $cpt_args );

以上是关于php 更改帖子标题字段的占位符文本。的主要内容,如果未能解决你的问题,请参考以下文章

初始化后更改输入字段的占位符文本

更改文本区域的占位符文本颜色

php 更改搜索表单占位符文本

php 在Beaver Builder订阅表单中更改名称字段占位符

使用 jquery 更改占位符文本字体和颜色

在文本字段 HTML 内对齐占位符