Guest User

Untitled

a guest
Jan 22nd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. /**
  3. * Removes Storefront's Welcome page
  4. */
  5. if ( ! class_exists( 'Storefront_Admin' ) ) :
  6. class Storefront_Admin {
  7. public function __construct() {
  8. remove_action( 'admin_menu', 'welcome_register_menu', 1 );
  9. }
  10. }
  11. endif;
  12. return new Storefront_Admin();
Add Comment
Please, Sign In to add comment