• Resolved cyuill

    (@cyuill)


    Hello, I have the meta box plugin installed but am unsure if it is actually being used, is there an easy way to determine where meta box is being used on a website? Best wishes,

Viewing 1 replies (of 1 total)
  • Plugin Author Anh Tran

    (@rilwis)

    You can check if there’s any field group is registered using our function, like this:

    add_action( 'init', function() {
        $meta_boxes = $meta_box_registry->all();
        var_dump( $meta_boxes );
    }, 99 );
    
    
Viewing 1 replies (of 1 total)
  • The topic ‘Is there an easy way to determine where meta box is being used on site?’ is closed to new replies.