Problem with table wp_termmeta

0

The following error is occurring permanently, registered in my error_log:

Error in WordPress Table database

'odiletan_bd.wpTP737termmeta' doesn't exist na query SELECT term_id,
 meta_key, meta_value FROM wpTP737termmeta WHERE term_id IN
      (301,308,314,295,311,305,291,298,15,310,303,312,194,316,19,304,7,306,307,292,302,296,313,317,299,160,315,297,203)
ORDER BY meta_id ASC feita por require('wp-blog-header.php'),
require_once('wp-includes/template-loader.php'),
include('/themes/colornews-child/single.php'), get_header,
locate_template, load_template,
 require_once('/themes/colornews-child/header.php'), wp_nav_menu,
wp_get_nav_menu_items, get_terms, WP_Term_Query->query,
WP_Term_Query->get_terms, update_termmeta_cache, update_meta_cache

How do I proceed to create this table?

    
asked by anonymous 08.06.2017 / 14:51

1 answer

0

You can manually do this from the command prompt, or download Client Mysql WorkBench from link , it's all graphic, but you can also manually create it using the splash screen it opens to run queries. Here is the command below:

CREATE TABLE IF NOT EXISTS 'odiletan_bd'.'wpTP737termmeta' (
'id' INT(11) NOT NULL,
PRIMARY KEY ('id'))
ENGINE = InnoDB
DEFAULT CHARACTER SET = latin1;

Remembering that it is only creating the id field, you have to see the other fields to create them, maybe have more fields than the one in the query.

    
08.06.2017 / 19:03