jcadima
4/1/2015 - 8:42 PM

How to display shortcodes in custom fields

How to display shortcodes in custom fields

<?php

/*
WP does not support shortcodes inside custom fields
quick solution is to use:
*/

$values = get_post_custom_values('your_custom_field_key');
$shortcode_output = do_shortcode($values[0]);
print $shortcode_output;