Created
October 3, 2014 18:06
-
-
Save davebonds/3833f31e18c66e63e564 to your computer and use it in GitHub Desktop.
Filters to change links in Equity Welcome screen
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
//* Customize forum link on Welcome screen | |
add_filter( 'equity_welcome_link_forum', 'equity_custom_welcome_link_forum' ); | |
function equity_custom_welcome_link_forum() { | |
$equity_forum_link = 'http://yourforumurl.com'; | |
return $equity_forum_link; | |
} |
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
//* Customize guide link on Welcome screen | |
add_filter( 'equity_welcome_link_guide', 'equity_custom_welcome_link_guide' ); | |
function equity_custom_welcome_link_guide() { | |
$equity_guide_link = 'http://yourguideurl.com'; | |
return $equity_guide_link; | |
} |
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
//* Customize IDX signup link on Welcome screen | |
add_filter( 'equity_welcome_link_idx', 'equity_custom_welcome_link_idx' ); | |
function equity_custom_welcome_link_idx() { | |
$equity_idx_link = 'http://yourcustomsignupurl.com'; | |
return $equity_idx_link; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment