I have problem in custom post type: I want to echo one shortcode that variable input in acf plugin
<?php
echo do_shortcode("[sdfile url=the_field('downloadlink')']")
?>
I have problem in custom post type: I want to echo one shortcode that variable input in acf plugin
<?php
echo do_shortcode("[sdfile url=the_field('downloadlink')']")
?>
i fix it
<?php $variable2 = get_field('downloadlink');
echo do_shortcode("[sdfile url='$variable2']");
?>