我已经制作了gallery
并且在编辑器中没有问题但在网站视图中没有工作,它显示shortcode
而不是图片。它之前有效但现在......我不知道发生了什么。
$gallery = get_post_field('post_content', 186);
echo $gallery;
发布内容:
[gallery link="file" ids="110,147,148,154,153,152,151,150,149,155,156,157,158,159,160,161,162,163,164,166,167,168,169,176,177,178" orderby="rand"]
重复一遍,它在编辑器中显示所有图像,但在站点视图中它只显示此代码。 任何想法是什么问题?
结果:
[gallery link="file" ids="110,147,148,154,153,152,151,150,149,155,156,157,158,159,160,161,162,163,164,166,167,168,169,176,177,178" orderby="rand"]
答案 0 :(得分:2)
你应该处理短代码:
echo do_shortcode($gallery);