排序
修复http/https协议下,css js无法加载问题
按需配置 //开启https加载js和css/ // wordpress强制跳转https后,JS/CSS不加载的解决方案 add_filter('script_loader_src', 'agnostic_script_loader_src', 20,2); function agnostic_script_l...
wordpress删除文章同时删除图片代码
代码 将下面代码添加到当前wordpress主题的Functions.php文件中: /* 删除文章时删除图片附件 */ function delete_post_and_attachments($post_ID) { global $wpdb; //删除特色图片 $thumbnails...