• Hi all

    I’ve deleted he home page from my page list on he above theme but it still appears on the blog. Any ideas?

    Thank you for any help

    Richard

Viewing 3 replies - 1 through 3 (of 3 total)
  • The default home tab is a link to your posts, or static front page if you have one.

    Your options are to make a custom menu, the default WP generated menu has the home tab, if you make your own menu it doesn’t have one by default

    You could also make a child theme for twentyten and remove this filter

    /**
     * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link.
     *
     * To override this in a child theme, remove the filter and optionally add
     * your own function tied to the wp_page_menu_args filter hook.
     *
     * @since Twenty Ten 1.0
     */
    function twentyten_page_menu_args( $args ) {
    	$args['show_home'] = true;
    	return $args;
    }
    add_filter( 'wp_page_menu_args', 'twentyten_page_menu_args' );

    https://go.rvoodoo.com/WPchild
    is my writeup about why child themes are necessary, etc, if you go that route

    Thread Starter RPMorris

    (@rpmorris)

    hank you Rev,

    I have kinda figured it ut but you confirmed. I’m in the process of retraining myself after 2 yrs unemployed and picked up wordpress for the first time a couple of weeks ago and i’m just building my first. Going for a hosted blog as that will throw me in at he deep end and get me up that learning curve the quickets i think. made all the easier by people like yourself. thanks

    I have another question if i may? i am using WAMP to build on a local server first. Can i work on more than one Blog at atime / and if so would you recomend i try just yet?

    Thanks again hopefully i’ll be able to help people in this situation one day

    Regards

    Richard

    You can install all the sites you want on WAMp far as I know

    I have a couple on my WAMP setup….. just in different folders….

    You can also check out virtual hosts if you feel froggy (for your WAMP)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘twenty ten theme home page’ is closed to new replies.