I post the answer here for everyone using PokaTheme v4.
Custom order can be set if you add the below code to the end of the file “functions.php” of your child theme and use the [affiliates_table] shortcode instead of the block.
function poka_child_656751221ab0f( $args, $atts ) {
if ( array_key_exists( 'sort', $atts ) ) {
if ( 'custom' === trim( strval( $atts['sort'] ) ) ) {
$args['orderby'] = 'post__in';
}
}
return $args;
}
add_filter( 'poka_affiliates_table_query_args', 'poka_child_656751221ab0f', 10, 2 );
Then you could use the [affiliates_table] shortcode (instead of the block) like this:
[affiliates_table reviews=”312,306,308″ sort=”custom”]