ID ); $collID = isset( $optns['_abcfal_coll_id'] ) ? esc_attr( $optns['_abcfal_coll_id'][0] ) : '0'; $cboColls = array(); if(function_exists('abcfic_dbu_cbo_collections')) { $cboColls = abcfic_dbu_cbo_collections(); } else { abcfal_msgs_error(17); return; } echo abcfal_inputbldr_input_cbo('abcfalCollID', '',$cboColls, $collID, 0, 0,'40%'); wp_nonce_field( basename( __FILE__ ), 'abcfal_mbox_coll_nc' ); } function abcfal_mbox_coll_save_data( $post_id, $post ) { if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } if ( !isset( $_POST['abcfal_mbox_coll_nc'] ) || !wp_verify_nonce( $_POST['abcfal_mbox_coll_nc'], basename( __FILE__ ) ) ) { return $post_id; } $oPpost = get_post_type_object( $post->post_type ); if ( !current_user_can( $oPpost->cap->edit_post, $post_id ) ){return $post_id;} abcfal_mbsave_save_cbo( $post_id, 'abcfalCollID', '_abcfal_coll_id', '0'); }