diff --git a/src/php/Plugin.php b/src/php/Plugin.php index d25a399c..b4ed4555 100644 --- a/src/php/Plugin.php +++ b/src/php/Plugin.php @@ -137,7 +137,10 @@ public function load_plugin() { new MCE_Plugin(); new Upgrader( PLUGIN_VERSION, $this->db ); new Admin_Bar(); - new Promotion_Manager(); + + if ( is_admin() ) { + new Promotion_Manager(); + } $this->init_snippet_files(); }