Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: filter_block_editor_meta_boxes

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
2235       * Fires right before the meta boxes are rendered.
2236       *
2237       * This allows for the filtering of meta box data, that should already be
2238       * present by this point. Do not use as a means of adding meta box data.
2239       *
2240       * @since 5.0.0
2241       *
2242       * @param array $wp_meta_boxes Global meta box state.
2243       */
2244      $wp_meta_boxes = apply_filters( 'filter_block_editor_meta_boxes', $wp_meta_boxes );
2245      $locations     = array( 'side', 'normal', 'advanced' );
2246      $priorities    = array( 'high', 'sorted', 'core', 'default', 'low' );
2247
2248      // Render meta boxes.
2249      ?>
2250      <form class="metabox-base-form">
2251      <?php the_block_editor_meta_box_post_form_hidden_fields( $post ); ?>
2252      </form>
2253      <form id="toggle-custom-fields-form" method="post" action="<?php echo esc_attr( admin_url( 'post.php' ) ); ?>">