WordPress好几款不错的可视化编辑器插件,其中我个人最爱elementor了,现在如果要买主题,都会看是否支持使用elementor了,elementor有免费和专业版本,我们一般用免费版本就可以了,功能是少很多,不过能满足大部分展示型的网站了。

国外不管是主题还是插件,大多数默认都是调用加载谷歌字体,但是这玩意在国内是没办法用的,所以就得禁止它了,好在相关作者都会告知怎么禁止加载或者删掉谷歌字体。

elementor官方也有教程说明,针对Google Fonts搬运下:

add_filter( 'elementor/frontend/print_google_fonts', '__return_false' );

把加到主题或者子主题的functions.php就行。

还有两个是:

add_action( 'elementor/frontend/after_register_styles',function() {
	foreach( [ 'solid', 'regular', 'brands' ] as $style ) {
		wp_deregister_style( 'elementor-icons-fa-' . $style );
	}
}, 20 );

这是Awesome字体,然后就是Eicons

add_action( 'wp_enqueue_scripts', 'remove_default_stylesheet', 20 ); 
function remove_default_stylesheet() { 
	wp_deregister_style( 'elementor-icons' ); 
}

具体根据自己的主题,按需修改就行了。

elementor官方文档:https://docs.elementor.com/article/286-speed-up-a-slow-site

Tagged in: