Hi, How can i remove "Just Another WordPress Weblog" from header of all wp themes that i have in wordpress MU? Every time each user create a new blog, i see Just Another WordPress Weblog in headear of the new blogs. Thanks
It's hard coded in the /wp-admin/includes/schema.php file: trac.mu.wordpress.org/browser/branches/2.7/wp-admin/includes/schema.php#L267 If you would rather not change a core file, search the mu forums for a blog defaults plugin and add in this to it: edit_option('blogdescription', 'Whatever you want here'); Please give that a try.
Hi, Thanks but i delete the text "Just another %s weblog" in /public_html/wp-admin/includes/schema.php but i dont see any difference.. is to delete only the text "Just another %s weblog" below? add_option('blogdescription', sprintf(__('Just another %s weblog'), $current_site->site_name ) ); Please help me.. Thanks
That's for regular wordpress, not wordpress mu. I believe the poster is trying to change it as a default setting for new blogs. You'll have to do that manually for any existing blogs. Are we talking about for new blogs or previous ones? Removing that line will only work for new blogs that get created. You'll have to edit them as noted up above if it;s for previous ones.