js去除uc浏览器自动添加的超链接

首先网页要引入jQuery。网上一共找到两种代码,亲测第一种有效!<script> function DelUc() { $("a").each(function(index, element) { try { var thishref = $(this).attr("href");

- 阅读全文 -

纯代码实现WordPress远程图片本地化

WordPress测试版本:5.4//将远程图片地址 本地化 这个在前台编辑器中使用时会有问题 function post_save_images($content) { set_time_limit(240); global $post; $post_id = $post->ID; $preg = preg_match_all('/<img.*?src

- 阅读全文 -

网站全局变灰

/*全局变灰*/ <style>html{-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);-ms-filter: grayscale(100%);-o-filter: grayscale(100%);filter:progid:DXImageTransform.Microsoft.BasicImage(graysca

- 阅读全文 -

为WordPress文章图片自动添加链接到原图

为WordPress文章图片自动添加链接到原图是为了图片灯箱效果。灯箱效果需要链向自身的a标签,并且a标签里要有data-imgbox="imgbox"属性(其他灯箱实现方法可能不一样)。function方法有缺陷,只有图片本身没有a标签时可以使用。//wordpress图片自动添加链接 add_filter('the_content', 'fancybox1'); add_filter('the

- 阅读全文 -

WordPress给外链添加添加nofollow和新窗口打开属性

WordPress给外链添加添加nofollow和新窗口打开属性,可以设置白名单,白名单只添加target="_blank"。代码一:// 外链nofollow和target="_blank",支持白名单 add_filter('the_content', 'wl_the_content'); function wl_the_content($content) { //

- 阅读全文 -

禁止加载WordPress自带的jquery.js

//禁止加载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

- 阅读全文 -