-
Notifications
You must be signed in to change notification settings - Fork 0
/
my-snow-monkey.php
65 lines (56 loc) · 1.96 KB
/
my-snow-monkey.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/**
* The plugin Snow Monkey Customizer
*
* @link http://www.tokion.jp
* @package my-snow-monkey
*
* @wordpress-plugin
* Plugin Name: My Snow Monkey Starter Kit
* Description: Let's customize Snow Monkey.
* Version: 1.0.2
* Author: Photosynthesic
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: msm
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
/**
* Snow Monkey 以外のテーマを利用している場合は有効化してもカスタマイズが反映されないようにする
*/
$msm_theme = wp_get_theme( get_template() );
if ( 'snow-monkey' !== $msm_theme->template && 'snow-monkey/resources' !== $msm_theme->template ) {
return;
}
define( 'MSM_CUSTOMIZER_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
define( 'MSM_CUSTOMISER_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
require MSM_CUSTOMISER_PATH . '/includes/class-msm-customizer.php';
Msm_Customizer::init();
/*
* ブロックスタイルをカスタムしない場合はコメントアウト
*/
require MSM_CUSTOMISER_PATH . '/includes/class-msm-block-styles.php';
Msm_Block_Styles::init();
/*
* ブロックパターンをカスタムしない場合はコメントアウト
*/
require MSM_CUSTOMISER_PATH . '/includes/class-msm-block-pattern.php';
Msm_Block_Pattern::init();
/*
* アーカイブ系をカスタムしない場合はコメントアウト
*/
// require MSM_CUSTOMISER_PATH . '/includes/class-msm-archives.php';
// Msm_Archives::init();
/*
* カスタムテンプレートを利用しない場合はコメントアウト
*/
// require MSM_CUSTOMISER_PATH . '/includes/class-msm-template.php';
// Msm_Template::init();
/*
* カスタム投稿タイプをカスタムしない場合はコメントアウト
*/
require MSM_CUSTOMISER_PATH . '/includes/class-msm-custom-post.php';
Msm_Custom_Post::init();