WordPress的hook钩子是一种机制,允许开发者在特定的时间点插入自定义的代码。其中一个常用的hook是"enter_title_here",它用于修改WordPress后台编辑页面中标题输入框的默认提示文本。
使用"enter_title_here" hook的方法如下:
1. 添加函数到"admin_head"或"admin_enqueue_scripts" hook中。这可以在后台加载时自动执行相应的代码。
function custom_title_placeholder() {
echo 'jQuery(document).ready(function($) {
$("#title").attr("placeholder", "请输入标题");
});';
}
add_action('admin_head', 'custom_title_placeholder');
2. 使用"enter_title_here" filter来修改标题输入框的默认提示文本。
function custom_title_placeholder($title_placeholder) {
$title_placeholder = "请输入标题";
return $title_placeholder;
}
add_filter('enter_title_here', 'custom_title_placeholder');
两种方法都可以达到修改标题输入框提示文本的效果,选择哪种方法取决于具体的需求和使用场景。
注意事项:
- 使用JavaScript的方法依赖于jQuery库,因此必须确保jQuery已加载。
- 修改提示文本的方法适用于所有的编辑页面,包括文章、页面、自定义文章类型等。
0 个评论