在某些网站上,如果您点击帖子中的图片,则会在新页面中显示图片,并在底部的帖子中显示图片。我该如何复制这种行为?
我有这段代码,但我不知道它是否正确。我甚至不知道在哪里添加这个。任何人都可以帮忙解释一下准确添加的位置吗?
$attachments = get_children(array('post_parent' => $post->ID,
'post_status' => 'inherit',
'post_type' => 'attachment',
'post_mime_type' => 'image',
'order' => 'ASC',
'orderby' => 'menu_order ID'));
foreach($attachments as $att_id => $attachment) {
$full_img_url = wp_get_attachment_url($attachment->ID);
// Your Code here
}
答案 0 :(得分:0)
您所描述的是“画廊”的默认功能,例如twentyten
默认主题(假设我没有误解你)。在loop.php
文件的第58行或其附近,您会找到:
<?php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?>
之后的代码应该为您提供如何完成上述外观的提示。
在向帖子添加图片时,WP通常会将其包装成一个链接,指向这种类型的表示。