Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can remove the Home link by adding an amended version of twentyeleven_page_menu_args() to your child’s functions.php file.

    Yes, you can just use the function:

    function twentyeleven_page_menu_args( $args ) {
    	$args['show_home'] = false;
    	return $args;
    }

    Hope this helps!

    Thread Starter Trillium

    (@trillium)

    Thanks for the answer,
    In section 2 of the GNU license it says that you need to cause the modified files to carry prominent notices stating that you changed the files and the date of any change. So is it sufficient to put in a comment like “Last modified by (name) on (date)”, or do you have to put a comment on every “file”? Basically, what constitutes proper notation of changes.
    Thanks so much for the help!

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