如果 PDF 存在,我正在尝试获取链接到同名 PDF 的缩略图,但如果 PDF 不存在,则不链接到任何内容。这是我的代码:
<?php
if ( function_exists('has_post_thumbnail') && has_post_thumbnail() ) {
$full_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full') ;
$pdf = substr_replace($full_image_url , 'pdf', strrpos($full_image_url[0] , '.') +1);
$filename = $pdf[0];
if (file_exists($filename)) {
echo '<a href="' . $pdf[0] . '" title="' . the_title_attribute('echo=0') . '" . target="_blank" >';
the_post_thumbnail('Full Size');
echo '</a>';
}
else {
echo "The file $filename exists";
}
}
?>
目前, else 语句只是为了证明它是否找到了文件。它似乎是,因为它显示The file http://localhost/AWAD/wp-content/uploads/2012/03/+D.pdf exists
。如果我去掉条件,帖子缩略图会显示一个指向 PDF 的链接。我只是无法获得工作的条件。
谁能发现它为什么不起作用?