我有一个图片库的排序,它显示在页面上使用以下模板代码。。。
<?php
$featured = get_post_meta($post->ID,\'_thumbnail_id\',true);
$attachments = get_children( \'post_type=attachment&orderby=menu_order&exclude=\'.$featured.\'&post_mime_type=image&post_parent=\'.$post->ID ); ?>
<ul id="fac">
<?php foreach ($attachments as $attachment) {
$img = wp_get_attachment_image_src($attachment->ID);
$img_large = wp_get_attachment_image_src($attachment->ID, \'full\'); ?>
<li><a rel="example" href="<?php the_permalink() ?>"><img class="fac-img" src="<?php echo $img[0] ?>" width="<?php echo $img[1] ?>" height="<?php echo $img[2] ?>" /></a></li>
<?php } ?>
</ul>
链接到帖子主单页的图像。
现在有没有办法,一个只有一个图片附加它不显示链接?
因此,您将一个图像附加到帖子上,它将自己显示出来。
但是,如果您上载了多个图像,它会在该图像周围添加一个长链接,其中包含链接文本“单击以查看更多图像”或其他内容。
点击该按钮可进入新单曲。php页面,其中所有图像都在运行一个已经完成的gallery js脚本。
是否可能?
谢谢你的帮助。