Answers for "how to add custom meta field in custom post type"

PHP
0

how to add custom meta field in custom post type

function global_notice_meta_box() {

    $screens = array( 'post', 'page', 'book' );

    foreach ( $screens as $screen ) {
        add_meta_box(
            'global-notice',
            __( 'Global Notice', 'sitepoint' ),
            'global_notice_meta_box_callback',
            $screen
        );
    }
}

add_action( 'add_meta_boxes', 'global_notice_meta_box' );
Posted by: Guest on July-07-2021

Code answers related to "how to add custom meta field in custom post type"

Browse Popular Code Answers by Language