Created
October 3, 2014 17:50
-
-
Save davebonds/0b2b29af6e95b905e386 to your computer and use it in GitHub Desktop.
Remove Welcome screen in Equity child theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* 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