이 코드를 사용하여 게시물의 이미지 첨부 파일을 나열합니다.
<select name="chb_homes_for_sale_specifics_floor_plan" style="width:100%;">
<option value="">Select</option>
<?php
$args = array(
'numberposts' => -1,
'orderby' => 'menu_order',
'order' => 'ASC',
'post_type' => 'attachment',
'post_parent' => $post->ID,
'post_mime_type' => 'image'
);
$image = get_posts($args);
if($image) {
foreach($image as $key => $data) : ?>
<option value="<?php echo $data->ID; ?>"><?php echo $data->post_title; ?></option>
<?php endforeach;
}
?>
</select>
그러나 현재 내가 보여주는 것은 첨부 파일 post_title
이지만 파일 이름을 대신 표시하고 싶습니다. 첨부 파일 가져 오기 URL을 사용하여 파일 이름을 가져 오기 위해 URL을 구문 분석 할 수는 있지만 WordPress에 파일 이름을 가져올 준비가 된 방법이 있는지 궁금합니다.