Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在自定义帖子类型中遇到问题:我想在 acf 插件中回显一个变量输入的简码
<?php echo do_shortcode("[sdfile url=the_field('downloadlink')']") ?>
我修复它
<?php $variable2 = get_field('downloadlink'); echo do_shortcode("[sdfile url='$variable2']"); ?>