मेरे पास अपने फ़ंक्शन में निम्न के साथ थंबनेल समर्थन जोड़ा गया है
// Add Thumbnail Support
add_theme_support('post-thumbnails');
set_post_thumbnail_size( 140, 140, true );
और मैं कस्टम पोस्ट टाइप बनाता हूं
// Create Custom Post Type for Work
add_action( 'init', 'create_post_type' );
function create_post_type() {
register_post_type( 'custom_post',
array(
'thumbnail',
'labels' => array(
'name' => __( 'Custom' ),
'singular_name' => __( 'Custom' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'custom'),
'taxonomies' => array('category', 'post_tag')
)
);
}
हालाँकि, जब मैं कस्टम पोस्ट प्रकार में एक नया पोस्ट बनाता हूं, तो चित्रित छवि मेटा बॉक्स नहीं दिखाता है। मैंने कस्टम पोस्ट प्रकार की घोषणा करते समय एक सरणी का उपयोग करने की भी कोशिश की है, लेकिन यह भी काम नहीं किया
// Add Thumbnail Support
add_theme_support('post-thumbnails', array ('post','work','custom_post'));
set_post_thumbnail_size( 140, 140, true );
मुझे किसकी याद आ रही है?