MP_Websites::add_status_metabox()

Add status metabox.

Contents


Source Source

File: mortgage-platform/Inc/MP_Websites.php

    public function add_status_metabox()
    {
        add_meta_box(
            MortgagePlatform::$prefix . 'website_status',
            __('Status', 'mortgage_platform'),
            array( $this, 'status_metabox_callback' ),
            $this->website_post_type,
            'side',
            'core'
        );
    }

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.