PluginProbe
My WP Customize Admin/Frontend / trunk
My WP Customize Admin/Frontend vtrunk
1.27.4 1.27.3 trunk 1.0 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.10 1.10.1 1.10.2 1.11 1.12 1.12.1 1.12.2 1.13 1.13.1 1.13.2 1.14 1.15.0 1.16 1.17.0 All 76 releases
my-wp / core / class.setup.php

class.setup.php in My WP Customize Admin/Frontend trunk, at core/class.setup.php

28 lines 377 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit;
5 }
6
7 if ( ! class_exists( 'MywpSetup' ) ) :
8
9 final class MywpSetup {
10
11 public static function init() {
12
13 //add_action( 'init' , array( __CLASS__ , 'wp_init' ) );
14
15 }
16
17 public static function wp_init() {
18
19 //load_plugin_textdomain( 'my-wp' , false , MYWP_PLUGIN_DIRNAME . '/languages' );
20
21 }
22
23 }
24
25 MywpSetup::init();
26
27 endif;
28