2016-07-08 7 views
0

, 나는 추가 이미지 크기 추가 할 :WordPress - add_image_size가 작동하지 않습니까? 이 <a href="https://codex.wordpress.org/Post_Thumbnails" rel="nofollow">guide</a> 다음

if (function_exists('add_theme_support')) { 
    add_theme_support('post-thumbnails'); 
    set_post_thumbnail_size(150, 150, true); // default Post Thumbnail dimensions (cropped) 

    // additional image sizes 
    // delete the next line if you do not need additional image sizes 
    add_image_size('category-thumb', 500, 500); 
} 

을하지만 새로운 이미지를 업로드 한 후 /wp-content/uploads/...에서 생성되는 이미지의 크기 (X 500 500)를 참조하지 않습니다.

내가 놓친 아이디어가 있습니까?

답변

1

이 코드를 추가하기 만하면됩니다.

if (function_exists('add_image_size')){ 
add_image_size('category-thumb',500,500, true); 

} 
+0

작동합니다! 도움을 주셔서 감사합니다 : D – laukok

+1

그것을 언급하지 마십시오 – Hamid

관련 문제