'footer_sidebar', 'name' => 'Widget du footer', 'description' => 'Barre des widgets du footer de toutes les pages.', 'before_widget' => '
', 'before_title' => 'remove_filter('term_description','wpautop'); // "LIRE LA SUITE" DES EXTRAITS function new_excerpt_more( $more ) { return ' ' . 'Lire la suite' . ''; } add_filter( 'excerpt_more', 'new_excerpt_more' ); // INFINITE PAGINATION add_action('wp_ajax_infinite_scroll', 'wp_infinitepaginate'); add_action('wp_ajax_nopriv_infinite_scroll', 'wp_infinitepaginate'); function wp_infinitepaginate(){ $loopFile = $_POST['loop_file']; $paged = $_POST['page_no']; $posts_per_page = get_option('posts_per_page'); query_posts(array('paged' => $paged )); get_template_part( $loopFile ); exit; } // THUMBNAIL POUR LES PAGES add_theme_support('post-thumbnails', array('post', 'page')); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'title-tag' ); add_theme_support( 'custom-header' ); add_theme_support( 'custom-background' ); add_editor_style(); ?>