Skip to content

Instantly share code, notes, and snippets.

@davebonds
Created October 3, 2014 17:50
Show Gist options
  • Save davebonds/0b2b29af6e95b905e386 to your computer and use it in GitHub Desktop.
Save davebonds/0b2b29af6e95b905e386 to your computer and use it in GitHub Desktop.
Remove Welcome screen in Equity child theme
//* Remove welcome screen (getting started links)
add_filter( 'equity_display_welcome_screen', 'equity_no_welcome' );
function equity_no_welcome() {
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment