# my-wp/trunk/shortcode/class.shortcode.php

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

- Page: https://pluginprobe.com/plugins/my-wp/trunk/code/shortcode/class.shortcode.php
- Raw: https://pluginprobe.com/plugins/my-wp/trunk/raw/shortcode/class.shortcode.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/shortcode/class.shortcode.php#L10-L20`.

```php
<?php

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

if ( ! class_exists( 'MywpShortcode' ) ) :

final class MywpShortcode {

  public static function get_shortcodes() {

    return apply_filters( 'mywp_shortcode' , array() );

  }

}

endif;

```
