我希望我的用户能够向帖子中添加图库,然后运行条件,如:
<? php
if (strpos($post - > post_content, \'[gallery\') !== false) {
echo do_shortcode(\'[gallery]\');
} else {
the_post_thumbnail();
} ?>
但使用wordpress的股票库并将其添加到帖子中也会显示内容中的库。
I have a 2 column layout, the right column has the_content()
but I want the left column to display the gallery if it has one.
我该怎么做才能让这一切成功?