-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwpz-my-snow-monkey.php
77 lines (72 loc) · 2.38 KB
/
wpz-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
66
67
68
69
70
71
72
73
74
75
76
77
<?php
/**
* Plugin name: WPZ My Snow Monkey
* Plugin URI: https://github.com/wpzoomup/wpz-my-snow-monkey
* Description: Snow Monkey 用カスタマイズコードを管理するプラグインです。
* Version: 1.0.0
* Tested up to: 6.0.3
* Requires at least: 6.0
* Requires PHP: 7.3
* Author: WP ZoomUP
* Author URI: https://wpzoomup.com
* License: GPL2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: wpz-my-snow-monkey
*/
/**
* Directory url of this plugin
*
* @var string
*/
define( 'MY_SNOW_MONKEY_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
/**
* Directory path of this plugin
*
* @var string
*/
define( 'MY_SNOW_MONKEY_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
/**
* Auto load the PHP files.
* functions ディレクトリの中にある php file を読み込みます。
* その際、ファイル名がアンダースコアで始まるもの(例:_example.php)は、読み込みません。
* Snow Monkey に依存しないコードは、こちらのディレクトリに配置します。
*/
$dir = MY_SNOW_MONKEY_PATH .'/functions/';
if ( ! file_exists( $dir) ) {
return;
} else {
opendir( $dir );
while( ( $file = readdir() ) !== false ) {
if( ! is_dir( $file ) && ( strtolower( substr( $file, -4 ) ) == ".php" ) && ( substr( $file, 0, 1 ) != "_" ) ) {
$load_file = $dir.$file;
require_once( $load_file );
}
}
closedir();
}
/**
* Snow Monkey 以外のテーマを利用している場合は有効化してもカスタマイズが反映されないようにする
*/
$theme = wp_get_theme( get_template() );
if ( 'snow-monkey' !== $theme->template && 'snow-monkey/resources' !== $theme->template ) {
return;
}
/**
* Auto load the PHP files.
* snow-monkey ディレクトリの中にある php file を読み込みます。
* その際、ファイル名がアンダースコアで始まるもの(例:_example.php)は、読み込みません。
* Snow Monkey に依存するコードは、こちらのディレクトリに配置します。
*/
$dir = MY_SNOW_MONKEY_PATH .'/snow-monkey/';
if ( ! file_exists( $dir) ) {
return;
} else {
opendir( $dir );
while( ( $file = readdir() ) !== false ) {
if( ! is_dir( $file ) && ( strtolower( substr( $file, -4 ) ) == ".php" ) && ( substr( $file, 0, 1 ) != "_" ) ) {
$load_file = $dir.$file;
require_once( $load_file );
}
}
closedir();
}