$args = array(
'post_type' => 'post', // Only query standard posts
'post_status' => 'publish', // Ensure only published posts
'posts_per_page' => 10, // Number of posts per page
'post__not_in' => array( // Exclude event posts by post type
'tribe_events', // Exclude The Events Calendar posts
),
);