add_meta_box example


}

/** * Register nav menu meta boxes and advanced menu items. * * @since 3.0.0 */
function wp_nav_menu_setup() {
    // Register meta boxes.     wp_nav_menu_post_type_meta_boxes();
    add_meta_box(
        'add-custom-links',
        __( 'Custom Links' ),
        'wp_nav_menu_item_link_meta_box',
        'nav-menus',
        'side',
        'default'
    );
    wp_nav_menu_taxonomy_meta_boxes();

    // Register advanced menu items (columns).     add_filter( 'manage_nav-menus_columns', 'wp_nav_menu_manage_columns' );

    

function add_meta_box( $id$title$callback$screen = null, $context = 'advanced', $priority = 'default', $callback_args = null ) {
    global $wp_meta_boxes;

    if ( empty( $screen ) ) {
        $screen = get_current_screen();
    } elseif ( is_string( $screen ) ) {
        $screen = convert_to_screen( $screen );
    } elseif ( is_array( $screen ) ) {
        foreach ( $screen as $single_screen ) {
            add_meta_box( $id$title$callback$single_screen$context$priority$callback_args );
        }
    }

    if ( ! isset( $screen->id ) ) {
        return;
    }

    $page = $screen->id;

    if ( ! isset( $wp_meta_boxes ) ) {
        $wp_meta_boxes = array();
    }
$nonce_action = 'update-bookmark_' . $link_id;
} else {
    /* translators: %s: URL to Links screen. */
    $heading      = sprintf( __( '<a href="%s">Links</a> / Add New Link' ), 'link-manager.php' );
    $submit_text  = __( 'Add Link' );
    $form_name    = 'addlink';
    $nonce_action = 'add-bookmark';
}

require_once ABSPATH . 'wp-admin/includes/meta-boxes.php';

add_meta_box( 'linksubmitdiv', __( 'Save' ), 'link_submit_meta_box', null, 'side', 'core' );
add_meta_box( 'linkcategorydiv', __( 'Categories' ), 'link_categories_meta_box', null, 'normal', 'core' );
add_meta_box( 'linktargetdiv', __( 'Target' ), 'link_target_meta_box', null, 'normal', 'core' );
add_meta_box( 'linkxfndiv', __( 'Link Relationship (XFN)' ), 'link_xfn_meta_box', null, 'normal', 'core' );
add_meta_box( 'linkadvanceddiv', __( 'Advanced' ), 'link_advanced_meta_box', null, 'normal', 'core' );

/** This action is documented in wp-admin/includes/meta-boxes.php */
do_action( 'add_meta_boxes', 'link', $link );

/** * Fires when link-specific meta boxes are added. * * @since 3.0.0 * * @param object $link Link object. */
$priority = 'high';
    }

    if ( empty( $context ) ) {
        $context = 'normal';
    }

    if ( empty( $priority ) ) {
        $priority = 'core';
    }

    add_meta_box( $widget_id$widget_name$callback$screen$context$priority$callback_args );
}

/** * Outputs controls for the current dashboard widget. * * @access private * @since 2.7.0 * * @param mixed $dashboard * @param array $meta_box */
public static function admin_init() {
        if ( get_option( 'Activated_Akismet' ) ) {
            delete_option( 'Activated_Akismet' );
            if ( ! headers_sent() ) {
                $admin_url = self::get_page_url( 'init' );
                wp_redirect( $admin_url );
            }
        }

        load_plugin_textdomain( 'akismet' );
        add_meta_box( 'akismet-status', __('Comment History', 'akismet'), array( 'Akismet_Admin', 'comment_status_meta_box' ), 'comment', 'normal' );

        if ( function_exists( 'wp_add_privacy_policy_content' ) ) {
            wp_add_privacy_policy_content(
                __( 'Akismet', 'akismet' ),
                __( 'We collect information about visitors who comment on Sites that use our Akismet anti-spam service. The information we collect depends on how the User sets up Akismet for the Site, but typically includes the commenter\'s IP address, user agent, referrer, and Site URL (along with other information directly provided by the commenter such as their name, username, email address, and the comment itself).', 'akismet' )
            );
        }
    }

    public static function admin_menu() {
        if ( class_exists( 'Jetpack' ) ) {
            
if ( post_type_supports( $post_type, 'revisions' ) && 'auto-draft' !== $post->post_status ) {
        $revisions = wp_get_latest_revision_id_and_total_count( $post->ID );

        // We should aim to show the revisions meta box only when there are revisions.         if ( ! is_wp_error( $revisions ) && $revisions['count'] > 1 ) {
            $publish_callback_args = array(
                'revisions_count'        => $revisions['count'],
                'revision_id'            => $revisions['latest_id'],
                '__back_compat_meta_box' => true,
            );

            add_meta_box( 'revisionsdiv', __( 'Revisions' ), 'post_revisions_meta_box', null, 'normal', 'core', array( '__back_compat_meta_box' => true ) );
        }
    }

    if ( 'attachment' === $post_type ) {
        wp_enqueue_script( 'image-edit' );
        wp_enqueue_style( 'imgareaselect' );
        add_meta_box( 'submitdiv', __( 'Save' ), 'attachment_submit_meta_box', null, 'side', 'core', array( '__back_compat_meta_box' => true ) );
        add_action( 'edit_form_after_title', 'edit_form_image_editor' );

        if ( wp_attachment_is( 'audio', $post ) ) {
            add_meta_box( 'attachment-id3', __( 'Metadata' ), 'attachment_id3_data_meta_box', null, 'normal', 'core', array( '__back_compat_meta_box' => true ) );
        }
Home | Imprint | This part of the site doesn't use cookies.