WordPress给外链添加添加nofollow和新窗口打开属性
WordPress给外链添加添加nofollow和新窗口打开属性,可以设置白名单,白名单只添加target="_blank"。代码一:// 外链nofollow和target="_blank",支持白名单 add_filter('the_content', 'wl_the_content'); function wl_the_content($content) { //
WordPress给外链添加添加nofollow和新窗口打开属性,可以设置白名单,白名单只添加target="_blank"。代码一:// 外链nofollow和target="_blank",支持白名单 add_filter('the_content', 'wl_the_content'); function wl_the_content($content) { //
//禁止加载WP自带的jquery.js if ( !is_admin() ) { // 后台不禁止 function my_init_method() { wp_deregister_script( 'jquery' ); // 取消原有的 jquery 定义 } add_action('init', 'my_init_method'); } wp_deregister_script( 'l
//禁用wordpress的文章嵌入功能 function disable_embeds_code_init() { // Remove the REST API endpoint. remove_action( 'rest_api_init', 'wp_oembed_register_route' ); // Turn off oEmbed auto discovery.
//去掉顶部工具栏 add_filter('show_admin_bar', '__return_false');相关阅读:https://boke112.com/bkwd/4093.html
// 隐藏左上角WordPress标志 function hidden_admin_bar_remove() { global $wp_admin_bar; $wp_admin_bar->remove_menu('wp-logo'); } add_action('wp_before_admin_bar_render', 'hidden_admin_bar_remove', 0
//移除头部wp_json链接 remove_action( 'wp_head', 'rest_output_link_wp_head', 10 ); remove_action( 'wp_head', 'wp_oembed_add_discovery_links', 10 );
//移除HTTP header 中的 wp-json link remove_action( 'template_redirect', 'rest_output_link_header', 11, 0 );
// 禁用REST API /*禁用未登录的用户*/ add_filter( 'rest_api_init', 'rest_only_for_authorized_users', 99 ); function rest_only_for_authorized_users($wp_rest_server){ if ( !is_user_logged_in() ) { wp_d
remove_action( 'wp_print_styles' , 'print_emoji_styles');// 禁用emoji
//删除JS及CSS的版本查询字符串 function _remove_script_version ( $src ){ $parts = explode( '?', $src ); return $parts[0]; } add_filter( 'script_loader_src', '_remove_script_version', 15, 1 ); add_filter