0
Wordpress의 "게시물 수정"화면에서 "추천 이미지"메타 박스에 맞춤 메시지를 추가하려면 어떻게해야하나요?Wordpress 게시물 편집 화면의 "추천 이미지"메타 박스에 메시지를 추가하는 방법
Wordpress의 "게시물 수정"화면에서 "추천 이미지"메타 박스에 맞춤 메시지를 추가하려면 어떻게해야하나요?Wordpress 게시물 편집 화면의 "추천 이미지"메타 박스에 메시지를 추가하는 방법
는 https://wordpress.org/support/topic/edited-post-thumbnail-metabox-wont-display-correctly/
/* Display post thumbnail meta box including description */
add_filter('admin_post_thumbnail_html', 'plc_post_thumbnail_add_description', 10, 2);
function plc_post_thumbnail_add_description($content, $post_id){
$post = get_post($post_id);
$post_type = $post->post_type;
if ($post_type = plc_person) {
$content .= "<p><label for=\"html\">700px wide by 296px tall</label></p>";
return $content;
return $post_id;
}
}
에 대한 답을 찾을 수