Execute Shortcode From Custom Field


/ Published in: PHP
Save to your folder(s)

This snippet will enable you to add shortcode to a wordpress custom field. Normally wordpress does not run shortcodes that you put into a custom field. Just put this code into whatever page you are displaying the results of the shortcode, and change the 'your_custom_field_here' to the name of your custom field.


Copy this code and paste it in your HTML
  1. <?php echo apply_filters('the_content', get_post_meta($post->ID, 'your_custom_field_here', true)); ?>

URL: http://leeboyce.co.uk

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.