WordPress文章/页面编辑界面的标题输入提示文字默认为“在此键入标题”,如果你想修改为其他文字,比如“输入文章标题”,如下图:
可以将下面的代码添加到当前主题的 functions.php 即可:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | /** * 更改标题输入框提示文字 * https://www.wpdaxue.com/change-title-prompt-text.html */ function change_default_title( $title ){ $screen = get_current_screen(); if( 'post' == $screen->post_type ) { $title = '输入文章标题'; } return $title; } add_filter( 'enter_title_here', 'change_default_title' ); |
/** * 更改标题输入框提示文字 * https://www.wpdaxue.com/change-title-prompt-text.html */ function change_default_title( $title ){ $screen = get_current_screen(); if( 'post' == $screen->post_type ) { $title = "输入文章标题"; } return $title; } add_filter( 'enter_title_here', 'change_default_title' );
注:你可以修改第 8 行的 post 为其他文章类型,比如,页面为 page。如果你还有其他自定义文章类型,比如 book,也是可以的。第 9 行是提示文字。
灵活地使用 IF 语句进行判断,可以给不同的文章类型设定不同的提示文字,比如:
1 2 3 4 5 6 7 | if( 'post' == $screen->post_type ) { $title = '输入文章标题'; } elseif ('page' == $screen->post_type) { $title = '输入页面标题'; } elseif ('book' == $screen->post_type) { $title = '输入书籍标题'; } |
if( 'post' == $screen->post_type ) { $title = "输入文章标题"; } elseif ('page' == $screen->post_type) { $title = "输入页面标题"; } elseif ('book' == $screen->post_type) { $title = "输入书籍标题"; }
本文修改WordPress文章/页面编辑界面的标题输入提示文字到此结束。不要像玻璃那样脆弱。有的人眼睛总盯着自我,所以长不高看不远;总是喜欢怨天尤人,也使别人无比厌烦。没有苦中苦,哪来甜中甜?不要像玻璃那样脆弱,而应像水晶一样透明,太阳一样辉煌,腊梅一样坚强。小编再次感谢大家对我们的支持!