wordpress The7 这款模板还是非常不错的(前提是搞企业站),这个模板在V4.4.5 及之前的版本对woocomerce的支持也比较好,到了The7.2 简直丑到爆,所以如果使用The7 有用到woo功能的话,升级需谨慎!你绝对会后悔的!
下面简要介绍下The7 这款模板在部署上线时应该做的准备工作
第一:必装缓存插件!至于你装什么缓存插件,请自行谷歌!
不装缓存插件,绝对卡成狗,wordpress有个共同点,如果你不用缓存,性能可想而知。各个插件的优略,请自行斟酌。很多人搜为什么The7 如此慢,其中一个原因就在这里。(当然优化还有很多原因,不扯其它的,诸如gzip,Nginx、Apache性能优化、静态文件HTTP分离等等别的)
第二:The7这款模板如何SEO
想都不用想,绝对是要All in one SEO pro插件,www.kejianet.cn有免费下载收费版本。
第三:外链处理
应该说不单单是The7,还有其它的模板也是,外链必须加nofollow。处理方法如下:
[php]
/**
* 外链自动添加nofollow
*/
add_filter( ‘the_content’, ‘cn_nf_url_parse’);
function cn_nf_url_parse( $content ) {
$regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>";
if(preg_match_all("/$regexp/siU", $content, $matches, PREG_SET_ORDER)) {
if( !empty($matches) ) {
$srcUrl = get_option(‘siteurl’);
for ($i=0; $i < count($matches); $i++)
{
$tag = $matches[$i][0];
$tag2 = $matches[$i][0];
$url = $matches[$i][0];
$noFollow = ”;
//新窗口打开
$pattern = ‘/target\s*=\s*"\s*_blank\s*"/';
preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE);
if( count($match) < 1 )
$noFollow .= ‘ target="_blank" ‘;
$pattern = ‘/rel\s*=\s*"\s*[n|d]ofollow\s*"/';
preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE);
if( count($match) < 1 )
$noFollow .= ‘ rel="nofollow" ‘;
$pos = strpos($url,$srcUrl);
if ($pos === false) {
$tag = rtrim ($tag,’>’);
$tag .= $noFollow.’>';
$content = str_replace($tag2,$tag,$content);
}
}
}
}
$content = str_replace(‘]]>’, ‘]]>’, $content);
return $content;
}
[/php]
第四:关闭插件及wp更新(可选)
[php]
/**
* 关闭wp及插件更新
*/
remove_action(‘load-update-core.php’, ‘wp_update_plugins’);
add_filter(‘pre_site_transient_update_plugins’, create_function(‘$a’, "return null;"));
remove_action(‘load-update-core.php’, ‘wp_update_themes’);
add_filter(‘pre_site_transient_update_themes’, create_function(‘$a’, "return null;"));
[/php]