Created
March 17, 2016 20:51
-
-
Save bpmore/118aea3841ed3d102c5e to your computer and use it in GitHub Desktop.
Makes Linkify Text plugin and Gravity View plugin work together
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
/** | |
* Makes Linkify Text work with Gravity View to link school to URL | |
*/ | |
function more_text_replacements( $filters ) { | |
$filters[] = 'gravityview_field_output'; | |
return $filters; | |
} | |
add_filter( 'c2c_linkify_text_filters', 'more_text_replacements' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment