我正在使用enter\\u title\\u here过滤器修改自定义帖子类型中的“enter title here”文本,问题是我应该使用什么挂钩来触发此函数?
我使用了admin\\u enqueue\\u脚本作为测试,它很有效,但我认为有一个更好的挂钩,因为这不是真正的脚本。
function print_scripts() {
$screen = get_current_screen();
if ( \'post\' === $screen->base && \'myposttype\' === $screen->post_type ) {
wp_enqueue_style( \'styles\', WP_CSS . \'styles.css\' );
// filter used here
add_filter( \'enter_title_here\', function() { _e("Enter name here"); } );
}
}
add_action( \'admin_enqueue_scripts\', \'print_scripts\' );