WordPress替换网站描述

/**
 * Useful for theme development
 * If you want to change the default site description of "Just another WordPress website"
 *
 * add this to your functions.php file
 */
function so_replace_default_site_description() {
    update_option( 'blogdescription', 'WHATEVER TAG YOU WANT' );
}
add_action( 'after_setup_theme', 'so_replace_default_site_description' );

发表评论

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据