我正在尝试制作一个自定义的 Wordpress 模板/页面,在其中列出了几个子类别中帖子的附加 PDF。我找到了几个片段,但我无法让它们工作。我的 PHP 技能有些有限。
这让我得到了所有附加的 PDF,但我想要 4 个不同的列表,每个类别一个。
<?php
$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
'post_mime_type' => 'application/pdf',
'post_parent' => null,
);
$attachments = get_posts($args);
if ($attachments) {
foreach ($attachments as $post) {
setup_postdata($post);
?>
<ul class="">
<li class=""><h2>Sub-Category-Name</h2>
<ul>
<li>
<?php
the_attachment_link($post->ID, false);
echo '</li>';
}
}
?>