When I initially installed Woodmart, I imported a lot of the demo content to see how things could look. I now want to remove this the content (the pictures in the media library in particular), but whenever I try to delete anything, WordPress tells me “Sorry, you are not allowed to delete this item.” Using query monitor I can see
“The message above was triggered by Core.
Call stack:
wp_die()
wp-admin/upload.php:190”
which is
if ( ! current_user_can( 'delete_post', $post_id_del ) ) {
wp_die( __( 'Sorry, you are not allowed to delete this item.' ) );
}
I am an admin, so surely I should be able to delete anything I want? What is happening here?