Skip to content

Instantly share code, notes, and snippets.

@bpmore
Created March 17, 2016 20:51
Show Gist options
  • Save bpmore/118aea3841ed3d102c5e to your computer and use it in GitHub Desktop.
Save bpmore/118aea3841ed3d102c5e to your computer and use it in GitHub Desktop.
Makes Linkify Text plugin and Gravity View plugin work together
/**
* 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