投稿のすべての画像添付ファイルを表示しないようにしたいページがあります。
このコードを使用しましたが、機能しません:
$attachments = get_posts($args);
if ($attachments) {
foreach ($attachments as $attachment) {
if (($attachment->post_mime_type!="image/png") || ($attachment->post_mime_type!="image/jpg")) {
echo substr(apply_filters('the_title', $attachment->post_title), 0, 25);
echo '.zip';
echo ' - (';
echo _format_bytes(filesize( get_attached_file( $attachment->ID ) ));
echo ')';
}
}
}