我正在构建一个主题,在主模板上生成一个链接,指向附在帖子上的PDF(它将仅是PDF文件)。
我找到了一个解决方案来检查这篇文章是否附有PDF。目标是在主页(博客)模板上创建一个下载文件的链接。
这是我目前拥有的
function leoni_get_attachment() {
global $post;
$args = array(
\'post_type\' => \'attachment\',
\'post_mime_type\' => \'application/pdf\',
\'post_parent\' => $post->ID,
);
$attachments = get_posts($args);
$attachment_link = wp_get_attachment_url();
if ($attachments) {
echo \'<a href="\'. $attachment_link .\'">Download</a>\';
} else {
return false;
}
}
我试过使用
get_attached_file()
没有成功。