Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Last active November 5, 2015 17:16
Show Gist options
  • Save Dinamiko/4b9e37883f53839baad0 to your computer and use it in GitHub Desktop.
Save Dinamiko/4b9e37883f53839baad0 to your computer and use it in GitHub Desktop.
<?php
/**
* Comprueba si ha cambiado la versión de la base de datos
* y ejecuta la función encuesta_database_install en caso afirmativo
*/
function encuesta_update_db_check() {
$installed_ver = get_option( "encuesta_db_version", '1.0' );
if ( $installed_ver != ENCUESTA_BBDD_VERSION ) {
encuesta_database_install();
}
}
add_action( 'plugins_loaded', 'encuesta_update_db_check' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment