从帖子的画廊WordPress 3.5获取图像

kcs*_*ssm 1 wordpress attachment get-childitem

如何从WordPress 3.5中的帖子中的图库中获取图像作为图库不再与3.5中的帖子相关.get_children()不起作用,因为图库不是附件.任何帮助表示赞赏.

Dze*_*yCZ 7

您必须解析短代码:

http://codex.wordpress.org/Gallery_Shortcode

使用正则表达式:

$post_content = get_the_content();
preg_match('/\[gallery.*ids=.(.*).\]/', $post_content, $ids);
$array_id = explode(",", $ids[1]);
Run Code Online (Sandbox Code Playgroud)