[WORDPRESS] 게시물에서 첫 번째 이미지 URL을 가져 오는가?
WORDPRESS게시물에서 첫 번째 이미지 URL을 가져 오는가?
해결법
-
1.이것을 futters.php 파일에 넣으십시오.
이것을 futters.php 파일에 넣으십시오.
function get_first_image() { global $post, $posts; $first_img = ''; ob_start(); ob_end_clean(); $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches); $first_img = $matches [1] [0]; if(empty($first_img)){ //Defines a default image $first_img = "/images/default.jpg"; } return $first_img; }
다음과 같은 게시물의 첫 번째 이미지를 가져 오는 데 필요한 페이지에서 함수를 호출하기 만하면됩니다.
<?php echo get_first_image() ?>
from https://stackoverflow.com/questions/7014371/geting-the-first-image-url-from-a-post by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] 장바구니에 항목을 표시 한 후 실행할 수있는 Woocommerce 추가 기능 추가 (0) | 2020.11.21 |
---|---|
[WORDPRESS] 사용자 지정 평균 요금 설명 Woocommerce 체크 아웃 페이지의 텍스트 (0) | 2020.11.21 |
[WORDPRESS] WordPress 사용자 지정 게시물 유형 및 부트 스트랩 모달 (0) | 2020.11.21 |
[WORDPRESS] WooCommerce에서 이월 된 항목을 기반으로 지불 게이트웨이 숨기기 표시 (0) | 2020.11.21 |
[WORDPRESS] WordPress에서 IPv6을 사용하여 MySQL에 연결하는 방법 (0) | 2020.11.21 |