diff --git a/eth-amp-analytics-wp.php b/eth-amp-analytics-wp.php index 51b1c19be8fcb95079aad2e977e64190bd203c98..342d193b6fbce1b9fcc14e1313f2eefed5b48122 100644 --- a/eth-amp-analytics-wp.php +++ b/eth-amp-analytics-wp.php @@ -75,8 +75,18 @@ class ETH_AMP_Analytics_WP { add_filter( 'amp_component_scripts', array( $this, 'filter_amp_component_scripts' ) ); add_action( 'amp_post_template_footer', array( $this, 'action_amp_post_template_footer' ) ); } + + unset( $ga_options ); + + // Admin UI + add_action( 'admin_init', array( $this, 'action_admin_init' ) ); + } + /** + * TEMPLATING + */ + /** * */ @@ -112,6 +122,15 @@ class ETH_AMP_Analytics_WP { </amp-analytics> <?php } + + /** + * ADMIN UI + */ + + /** + * + */ + public function action_admin_init() {} } ETH_AMP_Analytics_WP::get_instance(); \ No newline at end of file