Last active
April 5, 2023 21:06
-
-
Save joshuadavidnelson/334da35b5ef7e345d51a to your computer and use it in GitHub Desktop.
Add shortcode support to custom field output
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
| <?php | |
| /** | |
| * Apply shortcodes to custom field output | |
| * | |
| * @author Joshua David Nelson, [email protected] | |
| */ | |
| $custom_field_output = 'some text with a [shortcode]'; | |
| add_filter( 'custom_field', 'do_shortcode' ); | |
| $custom_field_output = apply_filters( 'custom_field', $custom_field_output ); | |
| echo '<div class="custom-field">' . wpautop( $custom_field_output ) . '</div>'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment