我有一个自定义的元框来存储pdf文件。对于这个输入,我使用type=“media”访问wordpress媒体库。
现在我无法获取文件名。这是我的整个循环:
<ul>
<?php
$args_artigos = array(\'post_type\' => \'artigo\',\'posts_per_page\' => -1);
$artigos_posts = new WP_Query($args_artigos);
if($artigos_posts->have_posts()) :
while($artigos_posts->have_posts()) :
$artigos_posts->the_post();
?>
<li>
<a href="<?php the_permalink(); ?>" class="artigos-titulo"><?php the_title() ?></a>
<span class="artigos-autor"><?php echo esc_html( get_post_meta( get_the_ID(), \'autor\', true ) ); ?></span>
<?php $filename = basename ( get_attached_file( get_the_ID() ) ); echo $filename; ?>
</li>
<?php endwhile; else: ?>
Oops, there are no posts.
<?php endif; ?>
</ul>
但它没有返回任何数据。