I couldn’t find that code webjunk, but I did find this which worked, for anyone who needs this down the road. Using 2010 Weaver, in the 2010 functions.php, beginning line 217 is:
function twentyten_page_menu_args( $args ) {
$args[‘show_home’] = true;
return $args;
I changed true to Blog and it worked.
function twentyten_page_menu_args( $args ) {
$args[‘show_home’] = Blog;
return $args;
Thanks webjunk, but what I need actually is to change the word “Home” to the word “Blog”…I’m assuming I need to do it through the editor function but I look through every file and couldn’t see anything that looked like it would work. Any ideas?