我正在使用以下简单的获取附件代码来显示附加到某个帖子的所有图像,但我希望能够排除通过几个也附加到帖子的自定义元框上传的图像。
例如,如何从该代码中排除使用sample\\u image\\u 1元键上载的图像?
<?php
$args = array (
\'post_type\' => \'attachment\',
\'numberposts\' => -1,
\'post_status\' => null,
\'post_parent\' => $post->ID,
);
$attachments = get_posts($args);
if ($attachments) {
foreach ( $attachments as $attachment ) {
the_attachment_link( $attachment->ID , \'screenshot\' );
}}
?>