Last active
November 5, 2015 17:16
-
-
Save Dinamiko/4b9e37883f53839baad0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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