WP_Post_Type::register_meta_boxes

Advertisement

Summery Summery

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

Syntax Syntax

WP_Post_Type::register_meta_boxes()

Source Source

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

	 * @since 4.6.0
	 */
	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 );

Advertisement

Changelog Changelog

Changelog
Version Description
4.6.0 Introduced.

Advertisement

Leave a Reply