コード例 #1
0
/**
 * Deactivate the plugin.
 */
function deactivate_wp_plugin()
{
    // Do something
    $settings = new Exporter\Settings();
    foreach ($settings->all() as $name => $value) {
        delete_option($name);
    }
}
 /**
  * Constructor.
  *
  * @param string $page
  */
 function __construct($page)
 {
     $this->page = $page;
     $base_settings = new \Exporter\Settings();
     $this->base_settings = $base_settings->all();
     $this->settings = apply_filters('apple_news_section_settings', $this->settings, $page);
     $this->groups = apply_filters('apple_news_section_groups', $this->groups, $page);
 }