我正在使用以下代码在我的wordpress网站上显示一个图库:
<?php echo do_shortcode('[satellite gallery=2 auto=off caption=off thumbs=on]'); ?>
现在我添加了一个名为'guitLink'的自定义帖子值/字段,我可以添加我想在上面的短代码中使用的图库编号,所以像这样:
<?php echo do_shortcode('[satellite gallery=' .get_post_custom_values('guitLink'). 'auto=off caption=off thumbs=on]'); ?>
任何想法如何实现这一目标?
答案 0 :(得分:0)
使用:
<?php $guitLink = get_post_custom_values('guitLink');
echo do_shortcode('[satellite gallery=' .$guitLink[0]. ' auto=off caption=off thumbs=on]'); ?>
而不是
<?php echo do_shortcode('[satellite gallery=' .get_post_custom_values('guitLink'). ' auto=off caption=off thumbs=on]'); ?>