标签归档:优化

wordpress代码精简和优化

1.css和JS压缩 可以使用yuicompressor 在线压缩 压缩时其他选择不勾

2.head 代码精简 去除不需要的代码功能 

主题functions.php里面

/**
* Disable Our Feed Urls
*/
function disable_our_feeds() {
wp_die( __('目前不提供 RSS 功能,请前往我们的<a href="'. get_bloginfo('url') .'">首页</a>。') );
}

add_action('do_feed', 'disable_our_feeds', 1);
add_action('do_feed_rdf', 'disable_our_feeds', 1);
add_action('do_feed_rss', 'disable_our_feeds', 1);
add_action('do_feed_rss2', 'disable_our_feeds', 1);
add_action('do_feed_atom', 'disable_our_feeds', 1);
remove_action('wp_head', 'feed_links_extra', 3);//清除feed信息

debian 内存优化精简

网上copy来的命令:

apt-get -y purge apache2-* bind9-* xinetd samba-* nscd-* portmap sendmail-* sasl2-bin
apt-get -y purge lynx memtester unixodbc python-* odbcinst-* sudo tcpdump ttf-*
apt-get remove acpi acpi-support-base acpid eject man-db manpages nano vim laptop-detect bsdmainutils busybox dmidecode4
apt-get install automake