반응형
이미지 크기를 추가할 때 get_the_post_post_url()이 작동하지 않음
사용하려고 할 때 이상한 상황이 발생해요.get_the_post_thumbnail_url()
워드프레스에서.
좀 더 정확히 말하면, 다음과 같은 변수가 있습니다.
$postImage = get_the_post_thumbnail_url('article-thumbnail-image');
빈 값을 반환합니다.사용하는 경우:
$postImage = get_the_post_thumbnail_url();
반환된 값은 맞지만 이미지 크기(150x150)가 다릅니다.여기서 이상한 점은 다음과 같습니다.
the_post_thumbnail_url('article-thumbnail-image');
이 이미지 사이즈가 등록되었을 때의 올바른 값을 나타냅니다.functions.php
GET 기능을 사용해야 합니다.
내가 뭘 잘못하고 있나요?
get_the_post_thumbnail_url()에는 2개의 인수가 있습니다.첫 번째 인수에는 null 또는 post_id/post 중 하나를 사용해야 하며 크기는 두 번째 인수가 됩니다.https://developer.wordpress.org/reference/functions/get_the_post_thumbnail_url/
언급URL : https://stackoverflow.com/questions/42188783/get-the-post-thumbnail-url-not-working-when-adding-an-image-size
반응형
'programing' 카테고리의 다른 글
Wordpress 플러그인:사용자 지정 URL에 연결 (0) | 2023.03.27 |
---|---|
ORA-12514 TNS: 청취자가 현재 Connect Descriptor에서 요청된 서비스를 인식하지 않음 (0) | 2023.03.27 |
React propTypes: 오브젝트 오브 쉐이프? (0) | 2023.03.22 |
결합 유형을 교차 유형으로 변환 (0) | 2023.03.22 |
스프링 CORS 'Access-Control-Allow-Origin' 헤더가 없습니다. (0) | 2023.03.22 |