'string', 'default' => '' ); } return $attributes; } /** * Publish the editor extraAttributes mirror for the approval key. */ add_action( 'wppb_fb_enqueue_editor_assets_late', 'wppb_in_epaa_fb_enqueue_editor_payload' ); function wppb_in_epaa_fb_enqueue_editor_payload() { $supported_types = wppb_in_epaa_fb_supported_field_types(); if ( empty( $supported_types ) ) return; $schema = array( 'edit-profile-approved-by-admin' => array( 'type' => 'string', 'default' => '' ), ); $extra_attrs = array(); foreach ( $supported_types as $field_type ) { $extra_attrs[ $field_type ] = $schema; } wppb_fb_extra_attributes_inline_script( $extra_attrs ); }