Meta order

Support General Meta orderResolved

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #17783
    jamesfoskerjamesfosker
    Participant

    Hi is there a way to set a priority of which meta box to load first, second and third ect.

    #17801
    Anh TranAnh Tran
    Keymaster

    Hi, we have the context parameter for meta boxes, which you can use to load meta boxes with priority. For meta boxes with the same context, you can try setting keys for meta boxes array, like this:

    add_filter( 'rwmb_meta_boxes', function( $meta_boxes ) {
        $meta_boxes['1_general'] = ...;
        $meta_boxes['2_social'] = ...;
        return $meta_boxes;
    } );
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.