for posts and comments. add_theme_support( 'automatic-feed-links' ); // Theme POST FORMATS add_theme_support( 'post-formats', array( 'aside', 'gallery', 'image', 'link', 'quote', 'status', 'video', 'audio', 'chat' ) ); // Register navigation - menus add_action( 'init', 'bittersweet_register_menus' ); function bittersweet_register_menus() { register_nav_menus( array( 'main-menu' => __( 'Main Menu', 'bitter-sweet' ), ) ); } // add Theme Post Thumbnail Support add_theme_support( 'post-thumbnails' ); add_image_size( 'recent-posts', 70, 70, true ); add_image_size( 'featured-post', 330, 200, true ); } add_action( 'after_setup_theme', 'bittersweet_theme_setup' ); /*-----------------------------------------------------------------------------------*/ /* Register theme scripts & styles */ /*-----------------------------------------------------------------------------------*/ add_action('init', 'bittersweet_reg_scripts'); function bittersweet_reg_scripts() { // register styles wp_register_style('bootstrap', get_template_directory_uri() . '/css/bootstrap.min.css', 'style'); wp_register_style('shareicons', get_template_directory_uri() . '/css/shareicons.css', 'style'); wp_register_style('style', get_template_directory_uri() . '/style.css'); // register scripts //wp_deregister_script('jquery'); wp_register_script('custom-jquery', get_template_directory_uri() . '/js/jquery.min.js', 'jquery'); wp_register_script('slides', get_template_directory_uri() . '/js/jquery.slides.min.js', 'jquery'); wp_register_script('bootstrap', get_template_directory_uri() . '/js/bootstrap.min.js', 'jquery'); wp_register_script('classie', get_template_directory_uri() . '/js/classie.js', 'jquery'); wp_register_script('uisearch', get_template_directory_uri() . '/js/uisearch.js', 'jquery'); wp_register_script('easing', get_template_directory_uri() . '/js/easing.js', 'jquery'); wp_register_script('ui-to-top', get_template_directory_uri() . '/js/jquery.ui.totop.min.js', 'jquery'); wp_register_script('html5shiv', get_template_directory_uri() . '/js/html5shiv.js', 'jquery'); wp_register_script('respond', get_template_directory_uri() . '/js/respond.min.js', 'jquery'); } /*-----------------------------------------------------------------------------------*/ /* Enqueue Theme Scripts & Styles */ /*-----------------------------------------------------------------------------------*/ add_action('wp_enqueue_scripts', 'bittersweet_init_scripts'); function bittersweet_init_scripts() { // enqueue styles wp_enqueue_style( 'bootstrap'); wp_enqueue_style( 'shareicons'); wp_enqueue_style( 'style'); // enquene scripts wp_enqueue_script('custom-jquery'); wp_enqueue_script('bootstrap'); wp_enqueue_script('classie'); wp_enqueue_script('uisearch'); wp_enqueue_script('easing'); wp_enqueue_script('ui-to-top'); wp_enqueue_script('slides'); wp_enqueue_script('html5shiv'); } /*-----------------------------------------------------------------------------------*/ /* Conditional Scripts */ /*-----------------------------------------------------------------------------------*/ add_action('template_redirect', 'bittersweet_cond_scripts'); function bittersweet_cond_scripts() { global $is_IE; if ( $is_IE ) { wp_enqueue_script('html5shiv'); wp_enqueue_script('respond'); } // load comment-reply on single if ( is_singular() ) wp_enqueue_script('comment-reply'); } // Load Theme scripts & Styles add_action( 'wp_enqueue_scripts', 'bittersweet_scripts_styles' ); function bittersweet_scripts_styles() { wp_enqueue_script( 'component', get_template_directory_uri() . '/js/component.js', array(), '1.0', true ); wp_enqueue_script( 'bitter-sweet-modernizr', get_template_directory_uri() . '/js/modernizr.custom.js', array(), '1.0', true ); wp_enqueue_script( 'bitter-sweet-functions', get_template_directory_uri() . '/js/custom-functions.js', array(), '1.0', true ); } // Filtering wp_title add_filter( 'wp_title', 'bittersweet_wp_title_filter' ); function bittersweet_wp_title_filter( $title ) { global $page, $paged; if ( is_feed() ) return $title; $site_description = get_bloginfo( 'description' ); $filtered_title = $title . get_bloginfo( 'name' ); $filtered_title .= ( ! empty( $site_description ) && ( is_home() || is_front_page() ) ) ? ' | ' . $site_description: ''; $filtered_title .= ( 2 <= $paged || 2 <= $page ) ? ' | ' . sprintf( __( 'Page %s', 'bitter-sweet' ), max( $paged, $page ) ) : ''; // show filtered title return $filtered_title; } if ( ! function_exists( 'bittersweet_content_nav' ) ) : // function for content nav below posts function bittersweet_content_nav( $class ) { global $wp_query; $class = esc_attr( $class ); if ( $wp_query->max_num_pages > 1 ) : ?> ID ) ? rand() : $post->ID ); $password_form = '
'.__('

This post is password protected. To view it please enter your password below:

', 'bitter-sweet').'
'; return $password_form; } // PAGINATION FOR BLOG AND OTHER PAGES function bittersweet_pagination_nav($pages = '', $range = 2) { $showitems = ($range * 2)+1; global $paged; if(empty($paged)) $paged = 1; if($pages == '') { global $wp_query; $pages = $wp_query->max_num_pages; if(!$pages) { $pages = 1; } } if(1 != $pages) { echo "
"; } } // comment after text add_filter( 'comment_form_defaults', 'bittersweet_filter_allowed_tags' ); function bittersweet_filter_allowed_tags( $defaults ) { $defaults['comment_notes_after'] = '

' . sprintf( __( 'You may use these HTML tags and attributes: %s' ), ' ' . allowed_tags() . '' ) . '

'; return $defaults; } // COMMENTS AND PINGBACKS if ( ! function_exists( 'bittersweet_comment' ) ) : function bittersweet_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; if ( 'pingback' == $comment->comment_type || 'trackback' == $comment->comment_type ) : ?>
  • >
  • >
    says:', 'bitter-sweet' ), sprintf( '%s', get_comment_author_link() ) ); ?>
    comment_approved ) : ?>

    'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'], 'before' => '
    ', 'after' => '
    ', ) ) ); ?> ', '' ); ?>