Title: Delete home button
Last modified: August 20, 2016

---

# Delete home button

 *  [maxteeden](https://wordpress.org/support/users/maxteeden/)
 * (@maxteeden)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/delete-home-button/)
 * Hi. Do you think it is possible to delete a home button through any widget or
   plugin? I just don’t want it displayed. Instead I wanna be clicking on a logo
   in order to get back home.
    I have plenty of pages and HOME really stands out
   of the crowd in terms of structure of pages.
 * —
    OR —
 * Is there anyway built in to rename it?
 * Thanks to all!

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/delete-home-button/#post-2177398)
 * > delete a home button through any widget or plugin?
 * unlikely –
 * please give some information:
 * what theme are you using?
 * link to your site?
 *  Thread Starter [maxteeden](https://wordpress.org/support/users/maxteeden/)
 * (@maxteeden)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/delete-home-button/#post-2177509)
 * Hi. just basic 2011 theme. sorry no url – on my localhost/ so far.
 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/delete-home-button/#post-2177519)
 * Do not edit the Twenty Eleven theme. It is the default WordPress 3.2 theme and
   having access to an **unedited** version of the theme is vital when dealing with
   a range of site issues.
 * For this reason, it is recommended that you consider [creating a child theme for your customisations](http://codex.wordpress.org/Child_Themes).
   Once your child theme is active, we should be able to help with the customisation.
 * —
    after you have done the above,
 * add something like this to functions.php of your child theme:
 *     ```
       add_action( 'after_setup_theme', 'twentyeleven_child_theme_setup' );
   
       function twentyeleven_child_theme_setup() {
       remove_filter( 'excerpt_length', 'twentyeleven_excerpt_length' );
       add_filter( 'wp_page_menu_args', 'twentyelevenchild_page_menu_args' );
       }
   
       /**
        * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link.
        */
       function twentyelevenchild_page_menu_args( $args ) {
       	$args['show_home'] = 'Start';
       	return $args;
       }
       ```
   
 * this `$args['show_home'] = 'Start';` changes the ‘Home’ button to ‘Start’;
    this`
   $args['show_home'] = false;` would remove it.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Delete home button’ is closed to new replies.

## Tags

 * [Home button](https://wordpress.org/support/topic-tag/home-button/)

 * 3 replies
 * 2 participants
 * Last reply from: [Michael](https://wordpress.org/support/users/alchymyth/)
 * Last activity: [14 years, 11 months ago](https://wordpress.org/support/topic/delete-home-button/#post-2177519)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
