UML Source :
@startuml
CampaignList -> CampaignForm: Create Campaign
CampaignForm --> CampaignList: Campaign & Report Created
<?php | |
// Get CMB2 metabox object | |
$GLOBALS['getfront_cmb'] = wds_frontend_cmb2_get(); | |
// Get $GLOBALS['getfront_cmb'] object_types | |
$post_types = $GLOBALS['getfront_cmb']->prop( 'object_types' ); | |
// Current user | |
$user_id = get_current_user_id(); | |
// Parse attributes | |
$atts = shortcode_atts( array( | |
'post_author' => $user_id ? $user_id : 1, // Current user, or admin |