Home › Forums › ACF PRO › Shortcodes stored within custom field values › Reply To: Shortcodes stored within custom field values
I don’t think it’s possible to do all that in one step…
A couple things:
You’d need to use get_field()
instead of the_field()
, and echo the do_shortcode()
function. Then you’ll have to combine them both with the HTML:
<?php
$first_name = get_field(‘first_name’);
$last_name = get_field(‘last_name’);
$shortcode = '<p>' . do_shortcode($first_name) . do_shortcode($last_name) . '</p>';
echo $shortcode;
?>
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.