Hi @akiraanastasia,
To show Categories and?Featured Image?options properly on your WordPress editor, please go through these methods:
- Configure WordPress Dashboard Settings
Go to WP admin dashboard and select Screen Options. Check the?Featured image?option to display a featured image column in your post/page lists.
If the?Featured image?option doesn’t exist in the?Screen Options?tab, your current theme may not support the featured image functionality. It’s best to contact your theme’s developer for assistance or address this issue manually as mentioned in the last step.
- Fix Featured Image not showing on a Blog Post Gallery page
In this way, enabling the?Display featured image?option prompts WordPress to retrieve featured images from the latest posts. A blank space will appear if you haven’t assigned a featured image to the post in question or set up a default featured image. Here are the steps:
1- After adding the page title, place the Latest Posts block anywhere on the page.
2- Open the?Block?tab, enable the?Display Featured Image?option, and click?Publish.
3- Return to the dashboard, then navigate to?Settings?→?Reading. Set?Your homepage displays?to?A static page. Click on the?Homepage?dropdown menu and choose the page you created earlier. Select?Save Changes.
- If you still can’t see the featured image meta box in the content editor or show post thumbnails correctly, most likely your current theme doesn’t support featured images.
In some cases, the code to enable the featured image functionality might be missing. To solve this, add the following code to the bottom of your theme’s?functions.php?file via an FTP client or a File Manager:
add_theme_support('post-thumbnails', array(
'post',
'page',
'custom-post-type-name',
));
Reload your admin dashboard and clear the website cache to see whether the featured image section appears when editing a post or page.
You can also check for any plugin conflicts by disabling them temporarily and then activating and checking them one by one.
Hope it helps! Let me know if you have any other questions.