kcs*_*ssm 1 wordpress attachment get-childitem
如何从WordPress 3.5中的帖子中的图库中获取图像作为图库不再与3.5中的帖子相关.get_children()不起作用,因为图库不是附件.任何帮助表示赞赏.
您必须解析短代码:
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)
| 归档时间: |
|
| 查看次数: |
6462 次 |
| 最近记录: |