wordpress使用百度的JQUERY公共库
CDN公共库是指将常用的JS库存放在CDN节点,以方便广大开发者直接调用。与将JS库存放在服务器单机上相比,CDN公共库更加稳定、高速。 百度公共CDN为您的应用程序提供稳定、可靠、高速的服务,包含全球所有最流行的开源JavaScript库 wordpress使用方法 wp_register_script('jquery.min', ("http://libs.baidu.com/jquery/1.4.2/jquery.min.js"), false, ''); wp_enqueue_script('jquery.min'); 百度CDN公共库 简介 CDN公共库是指将常用的JS库存放在CDN节点,以方便广大开发者直接调用。与将JS库...
禁用WordPress的Admin Bar
现在WordPress进一步向CMS(内容管理系统)方向发展,网友对其褒贬不一,其中WordPress前端的Admin Bar功能广为诟病。 禁用Admin Bar的方法非常简单,增加一句语句就可以了。 1 add_filter( 'show_admin_bar', '__return_false' ); 这里还是用到了Filter的知识点,在show_admin_bar这个Filter上返回false就可以了,即不显示 Admin Bar。__return_false 是WordPress内置的函数,它返回布尔值false,同样道理, __return_true 这个函数返回布尔值 true。 把上述代码加入到主题的functions.php中即可在主题中禁用A...
这是一篇用测试MetaAPI的测试内容
这篇文章是关于如何用C#发布Wordpress文章
这是一篇用测试MetaAPI的测试内容
这篇文章是关于如何用C#发布Wordpress文章
这是一篇用测试MetaAPI的测试内容
这篇文章是关于如何用C#发布Wordpress文章
这是一篇用测试MetaAPI的测试内容
这篇文章是关于如何用C#发布Wordpress文章
wordpress nginx 404
server { listen 80; server_name blog.peos.cn uol123.com; index index.php index.html; root /alidata/www/uol123; location ~ .*\.(php|php5)?$ { fastcgi_pass unix:/tmp/php-cgi.sock; #fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi.conf; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 1h; } #伪静态规则 if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_filename/index.p...
wordpress微博同步插件
<?php /* Plugin Name: WP-Weibo Plugin URI: http://blog.peos.cn Description: Wordpress 分享到微博 Version: 1.0 Author: 数据库之家 Author URI: http://blog.peos.cn License: GPL2 */ function post_to_sina_weibo($post_ID) { if (wp_is_post_revision($post_ID)) return;//修订版本(更新)不发微博 //$get_post_info = get_post($post_ID); //$get_post_centent = get_post($post_ID)->post_content; $get_post_title = get_post($post_ID)->post_title; if ($...
wp_tag_cloud用法详解
wp_tag_cloud()函数说明 该函数用来显示一列标签,即所谓的标签云。 wp_tag_cloud()的多种参数需要使用&连接,放在单引号 (')中以字符串方式传递。 用法: <?php wp_tag_cloud(smallest=8&largest=22&unit=pt&number=45&format=flat&orderby=&nameorder=ASC&exclude=1,2&include=3,5') ?> smallest=整数值 (整数) 使用最少的标签的字号 (单位由unit参数给出). largest=整数值 (整数) 使用最多的标签的字号 (单位由unit参数给出). unit=pt(默认), px, em, % 标签字...