Skip to content

Instantly share code, notes, and snippets.

@Stiofan
Created September 12, 2016 09:42
Show Gist options
  • Save Stiofan/00ce073d12a1df0c6f4d8f413936bd71 to your computer and use it in GitHub Desktop.
Save Stiofan/00ce073d12a1df0c6f4d8f413936bd71 to your computer and use it in GitHub Desktop.
Make shortcode work in field type
<?php
function my_enable_shortcodes_in_cf($html,$location,$cf){
// this line will enable it for all text inputs
$html = do_shortcode( $html );
return $html;
}
add_filter('geodir_custom_field_output_text','my_enable_shortcodes_in_cf',15,3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment