Currently I can change Site Title & Tagline in Settings >> General but someone attack and remove it.
So now I want to set these via function.php or wp-config.php
Any Idea?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
These fields have the keys 'blogname' and 'blogdescription' respectively in the options table.
I’m not sure exactly why you need to do this as it seems like a priority to secure your site and be able to update it through the dashboard yourself, but you can update them easily from functions.php with update_option, e.g.:
update_option( 'blogname', "site title goes here" ); update_option( 'blogdescription', "site tagline does here" );
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0