widgets['WP_Widget_Recent_Comments'])) { remove_action( 'wp_head', array($wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style') ); } } // remove injected CSS from gallery function bohaute_gallery_style($css) { return preg_replace( "!!s", '', $css ); } /********************* SCRIPTS & ENQUEUEING *********************/ // loading modernizr and jquery, and reply script function bohaute_scripts_and_styles() { global $wp_styles; // call global $wp_styles variable to add conditional wrapper around ie stylesheet the WordPress way if (!is_admin()) { // modernizr (without media query polyfill) wp_register_script( 'bohaute-modernizr', get_template_directory_uri() . '/library/js/libs/modernizr.custom.min.js', array(), '2.5.3', false ); // register main stylesheet wp_enqueue_style( 'bohaute-stylesheet', get_template_directory_uri() . '/library/css/style.min.css', array(), '', 'all' ); wp_enqueue_style( 'bohaute-main-stylesheet', get_template_directory_uri() . '/style.css', array(), '', 'all' ); // ie-only style sheet wp_enqueue_style( 'bohaute-ie-only', get_template_directory_uri() . '/library/css/ie.css', array(), '' ); wp_enqueue_style( 'bohaute-font', get_template_directory_uri() . '/css/font-awesome.css', array(), '' ); wp_enqueue_style( 'bohaute-fonts', '//fonts.googleapis.com/css?family=Merriweather:400,300,400italic,700,900,300italic' ); // comment reply script for threaded comments if ( is_singular() AND comments_open() AND (get_option('thread_comments') == 1)) { wp_enqueue_script( 'comment-reply' ); } wp_register_script( 'bohaute-js-scripts-home', get_template_directory_uri() . '/library/js/scripts-home.js', array(), '', true ); wp_register_script( 'bohaute-images-loaded', get_template_directory_uri() . '/library/js/imagesloaded.pkgd.min.js', array(), '', true ); wp_enqueue_script( 'bohaute-modernizr' ); wp_enqueue_script( 'jquery-effects-core '); wp_enqueue_script( 'jquery-effects-slide'); if ( is_home() || is_front_page() || is_archive() || is_search()) : wp_enqueue_script( 'bohaute-infinite-scroll', get_template_directory_uri() . '/library/js/jquery.ias.min.js', array(), '', true ); wp_enqueue_script( 'jquery-masonry' ); wp_enqueue_script( 'bohaute-images-loaded' ); wp_enqueue_script( 'bohaute-audio', get_template_directory_uri() . '/js/audio.min.js' , array(), '', true ); wp_enqueue_script( 'bohaute-js-scripts-home', get_template_directory_uri() . '/library/js/scripts-home.js', array(), '', true ); endif; $wp_styles->add_data( 'bohaute-ie-only', 'conditional', 'lt IE 9' ); // add conditional wrapper around ie stylesheet wp_enqueue_script( 'bohaute-js' , get_template_directory_uri() . '/library/js/scripts.js', array(), '', true ); } } /********************* THEME SUPPORT *********************/ // Adding WP 3+ Functions & Theme Support function bohaute_theme_support() { // wp thumbnails (sizes handled in functions.php) add_theme_support( 'post-thumbnails' ); add_editor_style(); // default thumb size set_post_thumbnail_size(125, 125, true); // wp custom background (thx to @bransonwerner for update) add_theme_support( 'custom-background', array( 'default-image' => '', // background image default 'default-color' => 'EAEDEF', // background color default (dont add the #) 'wp-head-callback' => '_custom_background_cb', 'admin-head-callback' => '', 'admin-preview-callback' => '' ) ); // rss thingy add_theme_support('automatic-feed-links'); // to add header image support go here: http://themble.com/support/adding-header-background-image-support/ // adding post format support add_theme_support( 'post-formats', array( 'video', // video 'audio', 'quote' ) ); // wp menus add_theme_support( 'menus' ); // registering wp3+ menus register_nav_menus( array( 'main-nav' => __( 'The Main Menu', 'bohaute' ), // main nav in header /*'footer-links' => __( 'Footer Links', 'bohaute' ) // secondary nav in footer*/ ) ); add_theme_support( 'title-tag' ); add_theme_support( 'custom-logo' ); } /* end bohaute theme support */ if ( ! function_exists( '_wp_render_title_tag' ) ) : function bohaute_render_title() { ?>