Fatal error: Maximum execution time of 30 seconds exceeded in /home/www/virtual/xxxxx.net/xxxxx/htdocs/wp-includes/wp-db.php on line 370
คืออะไรเหรอครับ ทำมาตั้งนาน เพิ่งมาเจอ แล้วจะแก้ไขได้อย่างไรครับ รบกวนด้วยนะครับ

ซึ่งบรรทัดที่ 370 คือ
/**
* Get one variable from the database
* @param string $query (can be null as well, for caching, see codex)
* @param int $x = 0 row num to return
* @param int $y = 0 col num to return
* @return mixed results
*/
function get_var($query=null, $x = 0, $y = 0) {
$this->func_call = "\$db->get_var(\"$query\",$x,$y)";
if ( $query )
$this->query($query);
// Extract var out of cached results based x,y vals
if ( !empty( $this->last_result[$y] ) ) {
$values = array_values(get_object_vars($this->last_result[$y]));
}
// If there is a value return it else return null
return (isset($values[$x]) && $values[$x]!=='') ? $values[$x] : null; // บรรทัดที่ 370
}