$values ) { if ( false === get_option( $option_name ) ) { add_option( $option_name, $values ); } } // Add custom AIOVG capabilities if ( false === get_option( 'aiovg_version' ) ) { $roles = new AIOVG_Roles; $roles->add_caps(); } // Remove the unfiltered_html capability from editors aiovg_remove_unfiltered_html_capability_from_editors(); // Create the email leads table aiovg_email_capture_create_table(); // Insert the plugin version add_option( 'aiovg_version', AIOVG_PLUGIN_VERSION ); } }