How to override excerpt length in child theme of Twenty Eleven?
Well I finally solved the problem. The excerpt_length function is NOT use with the excerpt box of the WordPress editor. You have to put all your content in the main area.
Well I finally solved the problem. The excerpt_length function is NOT use with the excerpt box of the WordPress editor. You have to put all your content in the main area.
Best way to go is to make a Child Theme of Twenty Eleven. Then first remove the default images: // REMOVE TWENTY ELEVEN DEFAULT HEADER IMAGES function wptips_remove_header_images() { unregister_default_headers( array(‘wheel’,’shore’,’trolley’,’pine-cone’,’chessboard’,’lanterns’,’willow’,’hanoi’) ); } add_action( ‘after_setup_theme’, ‘wptips_remove_header_images’, 11 ); After that you can tell your Child theme to use your own images: //ADD NEW DEFAULT HEADER … Read more