Import Games as drafts
Many Customers ask how to import games as drafts so they can add content before publishing the games, or choose which games to publish that are more relevant to them.
To do that, you need to add the following code to your theme's functions.php file:
add_filter('slotsl/posts_args', function($atts) { $atts['post_status'] = 'draft'; return $atts; });