利用YUI Compressor压缩JS/CSS之终极秘籍

JS/CSS的压缩已经不是什么新鲜话题了,自打YSlow推出后,这方面的优化话题是铺天盖地啊;不过当时作为后知后觉的我,甚至都没法完整地写出一份漂亮的JS/CSS的代码,何尝会去注意呢?!
时至今日,我仍然没法独立完整地写出一份专业的代码,但对能够压缩这类代码也有了应有的兴趣和需要,动手实现刻不容缓!
百度了很多这方面的教程,尝试了很多解决方案,可谓几经周折方才成功;喜悦之余,分享于此。
本秘籍宗旨只为实现在右键集成YUI Compressor和Editplus集成YUI Compressor。

1、关于YUI Compressor

YUI Compressor – The Yahoo! JavaScript and CSS Compressor
The YUI Compressor is a JavaScript compressor which, in addition to removing comments and white-spaces, obfuscates local variables using the smallest possible variable name. This obfuscation is safe, even when using constructs such as ‘eval’ or ‘with’ (although the compression is not optimal is those cases) Compared to jsmin, the average savings is around 20%.
The YUI Compressor is also able to safely compress CSS files. The decision on which compressor is being used is made on the file extension (js or css)

对于大量使用JavaScript和CSS的AJAX应用来说,如果JavaScript和CSS大小很大,则传输到客户端的时间会很久,网站性能不佳。而压缩JavaScript和CSS是自然的事情(其中YUI Compressor的压缩率大约为20%);

大致就是这么个意思,其实我们只要关注YUI Compressor能实现什么就行。
Continue reading 利用YUI Compressor压缩JS/CSS之终极秘籍

wordpress:玩转Admin Bar

wordpress:玩转Admin Bar
Admin Bar系WordPress 3.1之后增加的一项功能,但在利用WordPress制作企业网站时,可能你会发现Admin Bar对于客户来讲并没有多大作用,也或者你发现Admin Bar不够专业,缺少制作方的一些标识;

有了上面的需求,就来动动手吧。
Continue reading wordpress:玩转Admin Bar

关于worepss邮件使用的那些事儿

1892-thumb

1、防止邮箱地址被恶意采集

邮箱地址远离被恶意采集的方法其实有很多种,包括但不限于注册网易、GMail、Hotmail等等之类的免费邮箱,或者语义化邮箱址址,也或者截图等等;其实wordpress有内置函数,可以对邮箱地址进行加密处理,该函数为:antispambot(),位于wp-include/formatting.php,具体用法如下:

  

Continue reading 关于worepss邮件使用的那些事儿

wordpress随机文章

wordpress-random-post
前几日在wpcourse分享了一篇关于wordpress随机文章的实现方式与进阶用法,现在重新整理在这里,以便留档。

wordpress实现随机文章

随机文章的实现方法,可以按照以下代码进行:

<?php

$query = array(
	'post_type'	=> 'post',
	'orderby'	=> 'rand'
);
$posts = new WP_Query( $query );
if ( $posts->have_posts() ) {
	while( $posts->have_posts() ) : 
			$posts->the_post();
			the_content();
	endwhile;
}
wp_reset_query();

?>

格式和写法可以根据你个人的喜好,还可以写得更加简洁。
Continue reading wordpress随机文章