# my-wp/trunk/core/class.setup.php

My WP Customize Admin/Frontend, version trunk. 28 lines.

- Page: https://pluginprobe.com/plugins/my-wp/trunk/code/core/class.setup.php
- Raw: https://pluginprobe.com/plugins/my-wp/trunk/raw/core/class.setup.php
- Modified: 2021-06-15T02:32:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/my-wp/trunk/code/core/class.setup.php#L10-L20`.

```php
<?php

if ( ! defined( 'ABSPATH' ) ) {
  exit;
}

if ( ! class_exists( 'MywpSetup' ) ) :

final class MywpSetup {

  public static function init() {

    //add_action( 'init' , array( __CLASS__ , 'wp_init' ) );

  }

  public static function wp_init() {

    //load_plugin_textdomain( 'my-wp' , false , MYWP_PLUGIN_DIRNAME . '/languages' );

  }

}

MywpSetup::init();

endif;

```
