ericakfranz
5/7/2015 - 3:55 PM

Soliloquy Remove License Info

Soliloquy Remove License Info

<?php
/**
* Plugin Name: Soliloquy - Remove License Info
* Plugin URI: http://soliloquywp.com
* Version: 1.0
* Author: Thomas Griffin
* Author URI: http://www.thomasgriffin.io
* Description: Removes the Settings menu and license notices.
*/

add_action( 'init', 'tgm_remove_soliloquy_license_stuff', 999 );
function tgm_remove_soliloquy_license_stuff() {
	
	// Do nothing if Soliloquy is not active.
	if ( ! class_exists( 'Soliloquy' ) ) {
		return;
	}
	
	// Remove the Settings menu and license notices.
	remove_action( 'admin_menu', array( Soliloquy_Settings::get_instance(), 'admin_menu' ) );
	remove_action( 'admin_notices', array( Soliloquy_License::get_instance(), 'notices' ) );
	
}