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

- 阅读全文 -