使用WP Download Manager Pro从循环访问下载链接

时间:2019-09-27 作者:mcclosa

我是Wordpress的新手,如果这是一个愚蠢的问题,我深表歉意。

我正在使用WP Download Manager Pro plugin 将PDF上载到wpdmpro 职位类型。用户必须输入电子邮件地址才能下载。

在里面loop.php 我遍历所有wpdmpro 帖子类型和指定的类别和标签

<?php
query_posts(array(
    \'post_type\' => \'wpdmpro\',
    \'wpdmcategory\' => $category->category_nicename,
    \'tag\' => $cat_tag
));
?>
现在,我想循环浏览每一篇文章并访问附在文章上的下载链接,但我不知道如何做到这一点?文件似乎没有在任何地方概述这一点???

<?php if (have_posts()): ?>
    <?php while (have_posts()): the_post(); ?>
        // ... how can i access the download link on the post here?
    <?php endwhile; ?>
<?php endif; ?>
我试过。。。

<?php the_content(); ?>
以及

<?php 
$post = get_post(); 
$content = apply_filters(\'the_content\', $post->post_content); 
echo $content;  
?>
我在这里不知所措!

任何帮助都将不胜感激!

1 个回复
SO网友:user84017

您可以通过以下方式访问文件直接链接:

<?php echo (wpdm_get_package(get_the_ID()))[\'download_url\']; ?>

相关推荐

如何在PHP中获取木质属性缩略图?

我正在尝试获取所有atribute名称和图像(缩略图?)为了打印它们,我设法得到了它们的名字,但没有找到图像的url。要将图像添加到woocommerce属性,我使用Variation swatches extension .下面是如何获取属性名称的$attributes = get_terms(\"pa_couleurs\"); foreach ($attributes as $attribute){ Print $attribute->name; }