我想在single.php中显示wordpress gallery。我将此代码放入single.php
<?php echo do_shortcode('[gallery columns="4" ids="1,2,3,4,5,6,7,8"]');?>
问题在于图片ID正在根据帖子ID进行更改。
我想知道我应该放什么代码?我做了:
<?php
$id_image = what_code_should_i_put_here;
echo do_shortcode('[gallery columns="4" ids="'.$id_image.'"]');
?>
但我不知道代码部分。
what_code_should_i_put_here
必须生成'1,2,3,4,5,6,7,8'
答案 0 :(得分:0)
你检查过这个:https://wordpress.stackexchange.com/questions/149268/get-all-image-ids-from-the-media-library?获得ID数组后,您只需将其转换为分隔字符串即可。如果您需要帮助,请告诉我。