我正在检测用户的帖子中是否有图库:
$gallery = get_post_gallery( $post->ID, False );
$gallery_images = explode( \',\', $gallery[\'ids\'] );
有时我想看看它有多少列:
var_dump( $gallery[\'columns\'] );
这适用于2列,返回
2
但如果我将列设置为3,它会中断,并抛出错误:
<b>Notice</b>: Undefined index: columns in <b>C:\\file.php</b> on line <b>45</b>
请注意,4、5列可以正常工作,但3列不行。
This only happens when there\'s a second gallery in the post.这怎么可能?