Created
March 13, 2018 04:21
-
-
Save GeoffEW/070ad2cb22754c930a27a569077d859e to your computer and use it in GitHub Desktop.
change the url of "All Events" to your liking
This file contains 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
<?php | |
/* The below function will change the url of "All Events" and | |
* links that point back to the starting page of The Events Calendar | |
* (by default http://domain.com/events | |
* | |
* Plugins: The Events Calendar | |
* Author: Barry Hughes | |
* Last Updated: July 17, 2017 | |
*/ | |
add_filter( 'tribe_get_events_link', function() { | |
return 'http://example.com'; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment