2017-03-29 3 views

답변

1

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; 
} 
} 
에 대한 답을 찾을 수
관련 문제