是否可以通过编程方式将图像添加到帖子中?我正在自定义模板(我的第一个)工作,我需要以特定的方式显示添加到帖子中的图像。(第一个图像作为标题图像,其余的img仅渲染为隐藏的img标记(将通过lightbox幻灯片显示)。
那么有没有这样的函数get_post_attachments(\'type\'=>\'image\')
我可以在循环中迭代谁的输出?
谢谢你的帮助
最合适的回答,由SO网友:Chip Bennett 整理而成
您可以使用get_posts()
(Codex ref for getting Post attachments).
<?php
$args = array(
\'post_type\' => \'attachment\',
\'post_mime_type\' => \'image\',
\'numberposts\' => -1,
\'post_status\' => null,
\'post_parent\' => $post->ID
);
$attached_images = get_posts( $args );
?>