Yani aşağıdaki kodu bir kere kullanmak istiyorum.
$args = array(
'post_type' => 'attachment',
'numberposts' => '15',
'post_status' => 'any',
'post_parent' => get_the_ID(),
'order' => 'ASC',
);
$attachments = get_posts($args);

?>