Hola, El titulo habla, a ver si alguno de ustedes que maneje php, me puede ayudar !
Errores que da al activar el theme :
Código:
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
Codigo Donde se supone que esta el problema. Hay deje la linea 384 y 385 marcadas :
Código:
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');
Alguna Solución ? :D