Home › Forums › General Issues › Execute a shortcode from custom field in the sidebar › Reply To: Execute a shortcode from custom field in the sidebar
OKay, taking some guidance from here: http://support.advancedcustomfields.com/forums/topic/how-to-output-a-shortcode-in-an-input-field/
I did this:
<?php
global $wp_query;
$postid = $wp_query->post->ID;
$trailer = get_field( "trailer" );
echo do_shortcode("$trailer");
?>
Now it is outputting the shortcode from the custom field and printing it, but it does not execute it. I changed the Formatting for the field to No Formatting, but all it did is return the shortcode’s square brackets as HTML entities.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.