Hello There,
That option is not available by default. It is either, filter it with specific category or exclude specific post.
Their documentation is available here http://theme-one.com/docs/the-grid/
The usage of offset is similar to how you do it in WP_Query’s offset of WordPress, but this time, you’ll use it within The Grid’s code. Like from here
http://theme-one.com/docs/the-grid/#!/query_filter
The complete example is this, just by adding to child theme’s functions.php
function my_query_args($query_args, $grid_name) {
if ($grid_name == 'grid name') {
// all query parameters can be modified (https://codex.wordpress.org/Class_Reference/WP_Query)
$query_args['cat'] = -11; /*11 is the category ID you want to exclude*/
}
return $query_args;
}
add_filter('tg_wp_query_args', 'my_query_args', 10, 2);
Hope this helps.