* add_action( 'after_setup_theme', 'my_child_theme_setup' ); * function my_child_theme_setup() { * // We are providing our own filter for excerpt_length (or using the unfiltered value) * remove_filter( 'excerpt_length', 'twentyeleven_excerpt_length' ); * ... * } * * * For more information on hooks, actions, and filters, see http://codex.wordpress.org/Plugin_API. * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ /** * Set the content width based on the theme's design and stylesheet. */ if( !is_admin()){ wp_deregister_script('jquery'); wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"), false, '1.7.1'); wp_enqueue_script('jquery'); } wp_enqueue_script( 'slipSlap', get_stylesheet_directory_uri() .'/js/slipSlap.js', array ( 'jquery' ), null, true ); wp_enqueue_script( 'mosaic', get_stylesheet_directory_uri() .'/js/mosaic.1.0.1.js', array ( 'jquery' ), null, true ); function custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );