我有一个特征图像的缩略图,它链接到文件的更大版本。目前,该文件仅在标准浏览器窗口中打开,但我希望它在附件页中打开,但我不知道如何操作!以下是我目前的情况:
<?php if ( has_post_thumbnail()) : ?>
<div class="spudpictureandcontentwrapper">
<div class="illustration">
<?php $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), \'large\');
echo \'<a href="\' . $large_image_url[0] . \'" title="\' . the_title_attribute(\'echo=0\') . \'" >\';
the_post_thumbnail(\'thumbnail\'); ?>
</a></div>
<?php endif; ?>
我想我需要使用不同的函数来将值传递给$large\\u image\\u url,但无法确定是哪一个。