[prisna-google-website-translator]
nginx配置网站的二级目录项目伪静态
帝国下嵌套wordpress 因为业务需求,需要在网站的二级目录下建立一个新项目dbin,新项目也要用url重写的方式访问,比如www.xxx.com/dbin/…….。 试着配置了一下nginx的重写规则,如下: location / { if (!-e $request_filename) { rewrite ^([^\.]*)/lis…
owl 参数配置
Owl的新特性有: 可以无限循环项目可以居中显示灵活的速度控制多级别的padding设置项目间可以设置Margin使几乎所有的选项都具有响应能力多种宽度设置丰富的回调事件RTL(从右向左移动)YouTube/Vimeo视频支持锚链接导航合并项还有更多...  浏览器兼容 Owl Carousel 2.x.x 版本和以前的1.x.x版本不兼…
缩略图切换响应式
如何使用 引入资源文件 <link rel="stylesheet" href="slick.css" /> <script type="text/javascript" src="slick.min.js" ></script> 资源文件下载:点击下载 html 结构 <div class="big_im…
wordpress 滚动拉下加载更多文章(适用于瀑布流)
第一步 引入jquery-ias.min.js ,点击下载 第二步 function.php 添加 //获取总分类下文章总数 function ludou_get_cat_postcount($id) { // 获取当前分类信息 $cat = get_category($id); // 当前分类文章数 $count = (int) $cat->co…
magento 访问域名跳转到ip 访问 解决方法
数据库找到core_config_data 这张表core_config_data表中的path为web/unsecure/base_url和web/secure/base_url 为你新域名网址进入网站程序中的var/cache目录内清空所有缓存文件即可进入网站后台清除缓存
WordPress 允许分类描述添加 html 代码
WordPress 允许分类描述添加 html 代码 解决方法 直接将下面的代码添加到当前主题的 functions.php 文件即可: <?php /** * 允许分类描述添加html代码 */ remove_filter('pre_term_description', 'wp_filter_kses'); remove_filter('t…
owl 响应式配置
var parents_scroll1 = $('.parents_scroll1'); parents_scroll1.owlCarousel({ loop: true, autoplay:true, autoplayTimeout:3500, autoplayHoverPause:true, responsive:{ 0:{ items:2, …
PHP过滤HTML标签的三种方法
第一种 $str=preg_replace("/<s*imgs+[^>]*?srcs*=s*('|")(.*?)\1[^>]*?/?s*>/i","", $str); //过滤img标签 $str=preg_replace("/s+/","", $str); //过滤多余回车 $str=preg_replace("/<&…