문제

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?

도움이 되었습니까?

해결책

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" );
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 wordpress.stackexchange
scroll top