Errores que da al activar el theme :
Código:
Codigo Donde se supone que esta el problema. Hay deje la linea 384 y 385 marcadas :Warning : mysqli_query() expects at least 2 parameters, 1 given in /home/xxxxxxxx/public_html/wp-content/themes/xxxxxx/functions.php on line 384 Warning : mysqli_num_rows() expects parameter 1 to be mysqli_result, null given in /home/xxxxxxxx/public_html/wp-content/themes/xxxxxx/functions.php on line 385
Código:
Alguna Solución ? :D function theme_activation_function(){ global $wpdb; $table_name = $wpdb->prefix . 'dlmt'; 384: $result = mysqli_query("SHOW COLUMNS FROM $table_name LIKE 'Punto'"); 385: $exists = (mysqli_num_rows($result))?TRUE:FALSE; if(!$exists) $wpdb->query( "ALTER TABLE $table_name ADD (Punto smallint(3) DEFAULT 0, IPS varchar(200) NULL)" ); } add_action('after_switch_theme', 'theme_activation_function');