做wordpress主题,没必要从头开始去做一个。可以找一个不错的主题,比如blocksy,然后再做一个他的子主题就可以。
主要两个文件,style.css 和 functions.php
代码如下:
style.css
/*
Theme Name: wpmb01_blocksy
Version: 1.0
Description: wordpress外贸网站模板,power by demososo.com
Author: woo.demososo.com
Author URI: http://woo.demososo.com
Template: blocksy
*/
---
Template: blocksy -- 这个表示 父主题就是 blocksy
---
functions.php
<?php
/* Function to enqueue stylesheet from parent theme */
if (! defined('WP_DEBUG')) {
die( 'Direct access forbidden.' );
}
add_action( 'wp_enqueue_scripts', function () {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); //加载父主题的样式
});
function child_enqueue__parent_scripts() {
wp_enqueue_style( 'curstyle', get_stylesheet_directory_uri().'/style.css' ); //加载子主题的样式
}
add_action( 'wp_enqueue_scripts', 'child_enqueue__parent_scripts' );
------