注目画像以外のすべての添付ファイルを取得する
$args = array( 'post_type' => 'attachment', 'numberposts' => null, 'post_status' => null, 'post_parent' => $post->ID ); $attachments = get_posts($args); if ($attachments) { foreach ($attachments as $attachment) { echo apply_filters('the_title', $attachment->post_title); the_attachment_link($attachment->ID, false); } } 上記のコードには、取得する方法があります。 注目の画像を除くすべての添付リンク。 すべてのPDF添付ファイルのリンクのみ。 読んでました: http://www.wprecipes.com/how-to-show-wordpress-post-attachments http://johnford.is/programmatically-pull-attachments-from-wordpress-posts/