在Wordpress中获取帖子附件的链接或路径

问题描述

我在帖子中上传了文件。我想做一个可下载的链接。因此,我使用<?php echo get_attachment_link(); ?>。但是我无法获取文件的完整路径。

有我的代码

<?php
 $reports = array(
 'post_type' => 'post','posts_per_page' => 3,'category_name' => 'reports'); 
                              
    $q_reports = new WP_Query($reports);
                    
        if($q_reports->have_posts()){
        while($q_reports->have_posts()){ 
        $q_reports->the_post();?> 

<li><a href="<?php echo get_attachment_link(); ?>" ><?php echo the_title(); ?></a>
Published: <?php the_date(); ?> 

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)