将Meta Box信息插入短代码

时间:2016-05-26 14:07:28

标签: shortcode meta-boxes

我正在尝试将元框字段拉入短代码,但似乎无法获得以下内容以向屏幕输出任何内容。有什么建议?基本上我有一个图库ID的元框,客户端只放入一个数字。我需要将这个数字放在gallery_ids =

旁边
<?php
$galleryid = ''; 
if ( have_posts() ) : while ( have_posts() ) : the_post(); 
$galleryid = get_post_meta($post ->ID, '_cd_gallery_ID', true);
endwhile; 
echo do_shortcode('[ngg_images gallery_ids=$galleryid display_type=photocrati nextgen_pro_horizontal_filmstrip)');
else: 
endif; ?>

1 个答案:

答案 0 :(得分:0)

我正在努力使它变得更难 - 以下代码完美无缺......

<?php echo do_shortcode('[ngg_images gallery_ids="'.get_post_meta($post->ID, '_cd_gallery_ID', true).'" display_type="photocrati-nextgen_pro_horizontal_filmstrip"]'); ?>