Order custom post type by custom field (created by PODS) via PHP

I fixed it with the following code:

$posts = get_posts([
        'post_type'         => 'clen',
        'post_status' => 'publish',
        'numberposts' => -1,
        'meta_key'          => 'funkcia',
        'orderby'           => 'meta_value',
        'order'             => 'ASC'
    ]);

This snippet orders the gotten posts by field funkcia.