排序
wordpress关闭所有更新
添加到主题文件夹下的functions.php add_filter('pre_site_transient_update_core',??? create_function('$a', 'return null;')); // 关闭核心提示 add_filter('pre_site_transient_update_plug...
wordpress添加文章短代码 按钮和彩色提醒框
把下面的代码复制后添加到functions.php文件 /*绿色提醒框*/ function toz($atts, $content=null){ return ' '.$content.' '; } add_shortcode('v_notice','toz'); /*红色提醒框*/ function toa...
HTTP请求中POST与GET的区别
一、原理区别 一般我们在浏览器输入一个网址访问网站都是GET请求;再FORM表单中,可以通过设置Method指定提交方式为GET或者POST提交方式,默认为GET提交方式。 HTTP定义了与服务器交互的不同方法...
wordpress禁止上传文件和指定上传文件类型
下面的代码添加到主题functions.php,根据自己的需要添加。。 //禁止上传exe,jpe,jpeg,jpe,gif,png类型 add_filter('upload_mimes', 'custom_upload_mimes'); function custom_upload_mime...
支付宝当面付、电脑网站手机wap付款后没有异步和同步通知
很久没有用支付宝了。今天测试的时候突然发现,支付宝当面付、电脑网站手机wap付款后没有异步和同步通知,首先想到的是打开支付宝排查,结果显示: 错误信息: Invalid Arguments , suspected-at...
wp_nav_menu()菜单方法参数详解
wp_nav_menu参数详解: $menu_args = array( //最外层容器的标签名,默认div ‘container’ => ‘div’, //最外层容器的class名 ‘container_class’ => ‘mainNavBlock’, //最外层容器的id名 ...
WordPress博客链接路径设置及新浪SAE设置
一般有几种被普遍推荐的设置方法: /%category%/%postname%.html /archives/%postname%.html /archives/%post_id%.html /%postname%.html 关于/%postname%.html链接优点 1.链接较短更利于搜索引...
css实现导航菜单的渐变
无标题文档 li{ width:150px; list-style:none; margin-top:10px; border:#CCC solid 1px; border-bottom-right-radius:10px; border-top-right-radius:10px;} ul[class$='1']{ float:left;} ul...