how to change wordpress
title using mysql query?
I want run a single mysql command
in ubuntu for change the wordpress
title.
CodePudding user response:
At first, you need to check your website database table prefix & change it into SQL Query. Default WordPress table prefix 'wp'. You can update the WordPress site title via a simple SQL query. SQL Query:
UPDATE `wp_options` SET `option_value` = 'Your new site title' WHERE `wp_options`.`option_id` = 3;