W3cubDocs

/WordPress

WP_Post_Type::register_meta_boxes()

Registers the post type meta box if a custom callback was specified.

Source

File: wp-includes/class-wp-post-type.php

public function register_meta_boxes() {
		if ( $this->register_meta_box_cb ) {
			add_action( 'add_meta_boxes_' . $this->name, $this->register_meta_box_cb, 10, 1 );
		}
	}

Changelog

Version Description
4.6.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_post_type/register_meta_boxes