0
어쩌면 누군가이 질문을 다시하는 경우이 문제를 해결할 수 있습니다. 나는 지금이 포스트가 다른 이미지와 갤러리와 함께 하나의 피처 이미지를 가지고있다.wordpress의 single.php 파일에 첨부 된 이미지를 표시하는 방법
사용자가 게시물을 클릭하면 전체 게시물보기를 표시하는 single.php로 이동합니다. 이 single.php보기에 이미지와 일부 텍스트는 물론 사용자 지정 갤러리 이미지를 표시하고 싶지만 기능 이미지는 표시하지 않습니다.
어떻게하면됩니까? 하나의 코드를 작성했지만 작동하지 않았습니다.
function displayPostImages() {
global $post; function
$attachments = get_children(array('post_parent' => $post->ID, 'order' => 'ASC', 'orderby' => 'menu_order', 'post_type' => 'attachment', 'post_mime_type' => 'image'));
$image = get_post_thumbnail_id($post->ID); // featured_image ID
$featured_image = wp_get_attachment_image_src($image);
if ($attachments) { // if there are images attached to posting, start the flexslider markup
foreach ($attachments as $attachment_id => $attachment) {
if($attachment->ID != $image && $featured_image){
$img_source = wp_get_attachment_image_src($attachment_id, 'full')[0];
//print_r($img_source);
?>
// here will be HTML to display TOP images text and gallery images.
<?php
}
}
}
}
displayPostImages();
?>
https://github.com/fxstar/Wordpress-phonex/blob/master/single-gallery.php 여기를 참조하고있다 템플릿 exampl –
Breakermind에게 감사드립니다. 그 스크립트를 사용해 보았지만 스크립트를 다시 찾으려면 추천 이미지와 갤러리 스크립트에 오류가 있습니다. –