日期:2022-09-15 阅读:608
blocksy是一款非常出色的wordpress主题。很灵活,支持多个页面布局插件,比如elementor。提供多个页面模板导入。
https://cn.wordpress.org/themes/blocksy/
blocksy子主题的style.css并不会自动加载,需要这样:
https://creativethemes.com/blocksy/docs/general/child-theme/
Though, if you want to load this file and port your custom CSS over to it, there’s a simple PHP snippet that you’ll need to add into the functions.php
file from the child theme.
add_action( 'wp_enqueue_scripts', function () {
wp_enqueue_style('blocksy-child-style', get_stylesheet_uri());
});