我的问题是,就像标题说的那样,我只想在文件可用时才显示文件的下载链接......
我不知道错误在哪里:
<?php $doc = get_post_meta(get_the_ID(), 'wp_custom_attachment', true); ?>
<div id="custom_pdf">
<a href="<?php echo $doc['url']; ?> ">
Download PDF Here
</a>
</div><!-- #custom_pdf -->
这是正常的代码..它的工作正常,但在这里它无条件地显示......并且有条件的代码是:
<?php $doc = get_post_meta(get_the_ID(), 'wp_custom_attachment', true); ?>
<? if(strlen(trim(<?php $doc['url'] ?>)) > 0) {
<div id="custom_pdf">
<a href="<?php echo $doc['url']; ?> ">
Download PDF Here
</a>
</div><!-- #custom_pdf -->
} ; ?> // end if
这里是错误的地方,但我不知道在哪里。
有人可以帮帮我吗。谢谢。