[html]
<?php
$files = get_post_meta($post->ID, PDF, false);
foreach($files as $file){
$file = wp_get_attachment_url($file);
}
?>
<a href="<?php echo $file; ?>" target="_blank">PDFファイルです</a>
[/html]
[html]
<?php
$files = get_post_meta($post->ID, PDF, false);
foreach($files as $file){
$file = wp_get_attachment_url($file);
}
?>
<a href="<?php echo $file; ?>" target="_blank">PDFファイルです</a>
[/html]