I figured out it was because of an script that was delivered with the Options Framework. There was a little piece of code in my functions.php
which caused wrong javascript to be loaded.
When you are having the same problem, be sure to search for something like wp_enqueue_media();
or something of the following script, comment out and try to upload a thumbnail.
if( function_exists( 'wp_enqueue_media' ) ){
wp_enqueue_media();
} else {
wp_enqueue_style('thickbox');
wp_enqueue_script('media-upload');
wp_enqueue_script('thickbox');
}
Thanks for all answers, though.
Related Posts:
- Lost draft under all posts and drafts
- Set featured image on creating new post
- Stop WordPress Wrapping Images In A “P” Tag
- How to add an admin notice upon post save/update
- How do you add thumbnail support for custom post types?
- Keyboard shortcut for updating a page or post?
- Post featured image column on admin post list page
- Customizing HTML Editor Quicktags button to open a dialog for choosing insert options
- Allow user to “edit_others_posts” to save only, not publish
- Change label of title field for posts in the backend
- Let private posts stay in status “private” after edit through “editors”
- how to limit edit_form_after_title hook to page and post edit only?
- Custom Field in Featured image for A particular post
- media_handle_upload for local files?
- Listen to Post action
- How to create WP Editor using javascript
- How to add/assign or change featured image in post programmatically?
- Exclude drafts in all() view of edit.php
- How to Arrange Posts by Size in the WordPress Dashboard?
- How to add editor’s name to entry meta byline?
- List latest posts in WP-Admin
- Open WordPress ‘Add New Post’ admin page with parameters set via $_GET
- using slug instead of ID in admin edit post url
- Categories box not showing on post edit pages
- How do I use element instead of tags in WordPress post content having webP support?
- Restrict access to post if it is currently being edited
- Change padding to text indent in “Increase indent” TinyMCE
- How can I allow editors to leave comments on posts that have not yet been published?
- Automatically added brs and paragraphs?
- VT-resize image and display it [duplicate]
- Include Sticky Post in Page Posts Count?
- How can I pass $post object to ‘save_post’ add_action?
- Make “Post published. View post” Open in a New Tab
- Posts Page Featured Image [closed]
- How to get new post URL?
- How to remove bulk edit options
- Showing Thumbnail from Previous and Next Posts
- Custom function for “Submit for Review” hook
- Add confirmation popup on “Move to Trash”
- Embed WordPress Admin in an iframe
- How do I programmatically add an image to a post?
- Can’t publish, edit or delete posts since Gutenberg update
- How to Replace the WordPress Featured Image with a Video?
- add image map script to post
- Content editor creating blank paragraphs in spaces and creating   in the_excerpt
- Send email to user that his post has been rejected
- Add filter-by-tag in the all posts admin console page
- Delete Post From Front-End and attachment permanently
- Remove some articles from the list in WPAdmin for a user
- How to place HTML below the title of the (custom) post overview
- Require a featured image to publish post
- How do I allow users to follow a post and then allow admins to email all users who have followed that post?
- 2nd button row from WP Super Edit or TinyMCE Advanced doesn’t show to 2nd admin
- display list of posts/pages in admin edit post/page
- Underscores.me retrieve next / previous post thumbnail in post_nav function
- How to Set Featured image In WordPress without Showing it into Post?
- How only display all post related to category
- Custom Theme Want To Remove One Category From All Displays
- Invalid post type when click “Filter” or “Apply” button in WordPress admin Post list [closed]
- Strange problems when I try to insert HTML\XML code snippet in my posts
- How can I add a meta-box to the posts editor containing all items of a custom taxonomy as checkbox?
- How to change the title url on the edit post screen?
- Change Order of Admin Posts Depending on Meta
- Visual / HTML tabs vanished on editor
- Getting a 404 error when clicking edit page
- Diplay comment date on WP_Post_Comments_List_Table
- How do I find which articles are missing a featured image in The WordPress database?
- Change default Posts page
- How to access featured image?
- Modify WP_Post before processing
- WordPress version 3.8 – Preview button not working for editor
- Show featured image next to post-teasers in Genesis Framework?
- How to retrieve the postID in a “image_send_to_editor” hook function?
- Admin Notices don’t display on the admin screen for certain post
- What is the standard featured image size?
- I am unable to publish/update post
- Make Post Editor Select Number of Columns To 1 By Default
- Disable inline_edit() on edit.php
- Errors when uploading images in WP 3.5
- WordPress’ ALL post count info on its dashboard does not match phpMyAdmin’s ALL post count!
- Set size for attachments
- Classic editor throws 403 error based on post content
- Display Meta Values in Custom Filter – Admin Custom Posts
- why are images not full size?
- Post body text occupying featured image space before it loads
- Simultaneous admin updates causes custom fields to not update
- Get all images in post and comments like Twitter before post title
- Hook in to add new post link wp admin?
- Issue where WP Featured Image will not display
- plugin to post from admin to flickr [closed]
- How to check if single.php has already called the_post_thumbnail function
- Retrieve only posts from a specific user in wp-admin/edit.php
- Adding an Archive button to posts page for administrators
- Getting only the URL of the post thumbnail
- Remove Featured Image & All Media Uploaded to the Post
- Develop Admin Panel Page
- How show categories in admin and get that selected to show posts in index
- Get Post’s first image using Short-code
- related author post thumbnail shows post thumbnail
- Change post-slug using wordpress API? Change permalink of a post using php / jquery?