嗨,我正在用ACF和其他插件(WP Appbox)创建网站。WP Appbox允许我添加带有短代码的小应用下载框。短代码如下所示。[appbox storename appid]。如果我想在google商店中展示chrome,我会在帖子或主题中添加[appbox googleplay com.android.chrome]。因此,我的要求是如何使用高级自定义字段操纵storename值和app id。例如,将有2个acf字段存储名称和应用程序id,以便我可以将这些字段值从编辑器添加到快捷码。下面的代码是在单个中添加的。phpas现在我想到了这一点。
$thestore = get_field(\'store-name\');
$theapp = get_field(\'app-id\');
echo do_shortcode("[appbox $thestore $theapp]");
但它不起作用。