FT Images in berichten
Uitgelichte images zichtbaar in dashboard > berichten Voeg code hiernaast toe aan functions.php van je child theme. // ===============================// Quick Edit Featured Image// ===============================add_filter(‘manage_posts_columns’, function($columns) {$columns[‘featured_image’] = ‘Uitgelichte afbeelding’;return $columns;}); add_action(‘manage_posts_custom_column’, function($column_name, $post_id) {if ($column_name === ‘featured_image’) echo get_the_post_thumbnail($post_id, [60,60])…





