apply_filters( 'filter_block_editor_meta_boxes', array $wp_meta_boxes )

Fires right before the meta boxes are rendered.


Description

This allows for the filtering of meta box data, that should already be present by this point. Do not use as a means of adding meta box data.


Top ↑

Parameters

$wp_meta_boxes array
Global meta box state.

Top ↑

Source

File: wp-admin/includes/post.php. View all references

$wp_meta_boxes = apply_filters( 'filter_block_editor_meta_boxes', $wp_meta_boxes );


Top ↑

Changelog

Changelog
Version Description
5.0.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.