'FFF', 'default-image' => get_template_directory_uri() . '/img/bg.jpg' ));*/ // Add Support for Custom Header - Uncomment below if you're going to use /*add_theme_support('custom-header', array( 'default-image' => get_template_directory_uri() . '/img/headers/default.jpg', 'header-text' => false, 'default-text-color' => '000', 'width' => 1000, 'height' => 198, 'random-default' => false, 'wp-head-callback' => $wphead_cb, 'admin-head-callback' => $adminhead_cb, 'admin-preview-callback' => $adminpreview_cb ));*/ // Enables post and comment RSS feed links to head add_theme_support('automatic-feed-links'); // Localisation Support load_theme_textdomain('iotheme', get_template_directory() . '/languages'); } add_filter( 'image_size_names_choose', 'iotheme_add_custom_sizes' ); function iotheme_add_custom_sizes( $sizes ) { return array_merge( $sizes, array( 'team-small' => __( 'Team' ), ) ); } /*------------------------------------*\ Functions \*------------------------------------*/ // IO Theme navigation function iotheme_nav() { wp_nav_menu( array( 'theme_location' => 'header-menu', 'menu' => '', 'container' => 'div', 'container_class' => 'menu-{menu slug}-container', 'container_id' => '', 'menu_class' => 'menu', 'menu_id' => '', 'echo' => true, 'fallback_cb' => 'wp_page_menu', 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'items_wrap' => '', 'depth' => 0, 'walker' => '' ) ); } // Load IO Theme scripts (header.php) function iotheme_header_scripts() { if ($GLOBALS['pagenow'] != 'wp-login.php' && !is_admin()) { wp_register_script('conditionizr', get_template_directory_uri() . '/js/lib/conditionizr-4.3.0.min.js', array(), '4.3.0'); // Conditionizr wp_enqueue_script('conditionizr'); // Enqueue it! wp_register_script('modernizr', get_template_directory_uri() . '/js/lib/modernizr-2.7.1.min.js', array(), '2.7.1'); // Modernizr wp_enqueue_script('modernizr'); // Enqueue it! //jarallax for or team s // wp_register_script('jarallax', get_template_directory_uri() . '/js/lib/jarallax.min.js', array(), '1.10.7'); // jarallax // wp_enqueue_script('jarallax'); // Enqueue it! // wp_register_script('jarallax-element', get_template_directory_uri() . '/js/lib/jarallax-element.min.js', array(), '1.0.0'); // jarallax // wp_enqueue_script('jarallax-element'); // Enqueue it! //lory: homescreen carousel // wp_register_script('lory', get_template_directory_uri() . '/js/lib/jquery.lory.min.js', array('jquery'), '1.0.0'); // Lory infinite carousel // wp_enqueue_script('lory'); // Enqueue it! wp_register_script('iothemescripts', get_template_directory_uri() . '/js/scripts.js', array('jquery'), '1.0.0'); // Custom scripts wp_enqueue_script('iothemescripts'); // Enqueue it! $translation_array = array( 'templateUrl' => get_template_directory_uri() ); //after wp_enqueue_script wp_localize_script( 'iothemescripts', 'object_name', $translation_array ); } } // Load IO Theme conditional scripts function iotheme_conditional_scripts() { if (is_page('pagenamehere')) { wp_register_script('scriptname', get_template_directory_uri() . '/js/scriptname.js', array('jquery'), '1.0.0'); // Conditional script(s) wp_enqueue_script('scriptname'); // Enqueue it! } } // Load IO Theme styles function iotheme_styles() { wp_register_style('normalize', get_template_directory_uri() . '/normalize.css', array(), '1.0', 'all'); wp_enqueue_style('normalize'); // Enqueue it! wp_register_style('iotheme', get_template_directory_uri() . '/style.css', array(), '1.0', 'all'); wp_enqueue_style('iotheme'); // Enqueue it! } // Register IO Theme Navigation function register_html5_menu() { register_nav_menus(array( // Using array to specify more menus if needed 'header-menu' => __('Header Menu', 'iotheme'), // Main Navigation 'sidebar-menu' => __('Sidebar Menu', 'iotheme'), // Sidebar Navigation 'lang-menu' => __('Language Menu', 'iotheme'), // Extra Navigation if needed (duplicate as many as you need!) 'social-menu' => __('Social Menu', 'iotheme'), // Extra Navigation if needed (duplicate as many as you need!) 'footer-social-menu' => __('Footer social Menu', 'iotheme') // Extra Navigation if needed (duplicate as many as you need!) )); } // Remove the
surrounding the dynamic navigation to cleanup markup function my_wp_nav_menu_args($args = '') { $args['container'] = false; return $args; } // Remove Injected classes, ID's and Page ID's from Navigation
  • items function my_css_attributes_filter($var) { return is_array($var) ? array() : ''; } // Remove invalid rel attribute values in the categorylist function remove_category_rel_from_category_list($thelist) { return str_replace('rel="category tag"', 'rel="tag"', $thelist); } // Add page slug to body class, love this - Credit: Starkers Wordpress Theme function add_slug_to_body_class($classes) { global $post; if (is_home()) { $key = array_search('blog', $classes); if ($key > -1) { unset($classes[$key]); } } elseif (is_page()) { $classes[] = sanitize_html_class($post->post_name); } elseif (is_singular()) { $classes[] = sanitize_html_class($post->post_name); } return $classes; } // If Dynamic Sidebar Exists if (function_exists('register_sidebar')) { // Define Sidebar Widget Area 1 register_sidebar(array( 'name' => __('Widget Area 1', 'iotheme'), 'description' => __('Description for this widget-area...', 'iotheme'), 'id' => 'widget-area-1', 'before_widget' => '
    ', 'after_widget' => '
    ', 'before_title' => '

    ', 'after_title' => '

    ' )); // Define Sidebar Widget Area 2 register_sidebar(array( 'name' => __('Widget Area 2', 'iotheme'), 'description' => __('Description for this widget-area...', 'iotheme'), 'id' => 'widget-area-2', 'before_widget' => '
    ', 'after_widget' => '
    ', 'before_title' => '

    ', 'after_title' => '

    ' )); } // Remove wp_head() injected Recent Comment styles function my_remove_recent_comments_style() { global $wp_widget_factory; remove_action('wp_head', array( $wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style' )); } // Pagination for paged posts, Page 1, Page 2, Page 3, with Next and Previous Links, No plugin function html5wp_pagination() { global $wp_query; $big = 999999999; echo paginate_links(array( 'base' => str_replace($big, '%#%', get_pagenum_link($big)), 'format' => '?paged=%#%', 'current' => max(1, get_query_var('paged')), 'total' => $wp_query->max_num_pages )); } // Custom Excerpts function html5wp_index($length) // Create 20 Word Callback for Index page Excerpts, call using html5wp_excerpt('html5wp_index'); { return 20; } // Create 40 Word Callback for Custom Post Excerpts, call using html5wp_excerpt('html5wp_custom_post'); function html5wp_custom_post($length) { return 40; } // Create the Custom Excerpts callback function html5wp_excerpt($length_callback = '', $more_callback = '') { global $post; if (function_exists($length_callback)) { add_filter('excerpt_length', $length_callback); } if (function_exists($more_callback)) { add_filter('excerpt_more', $more_callback); } $output = get_the_excerpt(); $output = apply_filters('wptexturize', $output); $output = apply_filters('convert_chars', $output); $output = '

    ' . $output . '

    '; echo $output; } // Custom View Article link to Post function html5_blank_view_article($more) { global $post; return '... ' . __('View Article', 'iotheme') . ''; } // Remove Admin bar function remove_admin_bar() { return false; } // Remove 'text/css' from our enqueued stylesheet function html5_style_remove($tag) { return preg_replace('~\s+type=["\'][^"\']++["\']~', '', $tag); } // Remove thumbnail width and height dimensions that prevent fluid images in the_thumbnail function remove_thumbnail_dimensions( $html ) { $html = preg_replace('/(width|height)=\"\d*\"\s/', "", $html); return $html; } // Custom Gravatar in Settings > Discussion function iothemegravatar ($avatar_defaults) { $myavatar = get_template_directory_uri() . '/img/gravatar.jpg'; $avatar_defaults[$myavatar] = "Custom Gravatar"; return $avatar_defaults; } // Threaded Comments function enable_threaded_comments() { if (!is_admin()) { if (is_singular() AND comments_open() AND (get_option('thread_comments') == 1)) { wp_enqueue_script('comment-reply'); } } } // Custom Comments Callback function iothemecomments($comment, $args, $depth) { $GLOBALS['comment'] = $comment; extract($args, EXTR_SKIP); if ( 'div' == $args['style'] ) { $tag = 'div'; $add_below = 'comment'; } else { $tag = 'li'; $add_below = 'div-comment'; } ?> < id="comment-">
    %s says:'), get_comment_author_link()) ?>
    comment_approved == '0') : ?>
    $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?>
    Discussion add_filter('body_class', 'add_slug_to_body_class'); // Add slug to body class (Starkers build) add_filter('widget_text', 'do_shortcode'); // Allow shortcodes in Dynamic Sidebar add_filter('widget_text', 'shortcode_unautop'); // Remove

    tags in Dynamic Sidebars (better!) add_filter('wp_nav_menu_args', 'my_wp_nav_menu_args'); // Remove surrounding

    from WP Navigation // add_filter('nav_menu_css_class', 'my_css_attributes_filter', 100, 1); // Remove Navigation
  • injected classes (Commented out by default) // add_filter('nav_menu_item_id', 'my_css_attributes_filter', 100, 1); // Remove Navigation
  • injected ID (Commented out by default) // add_filter('page_css_class', 'my_css_attributes_filter', 100, 1); // Remove Navigation
  • Page ID's (Commented out by default) add_filter('the_category', 'remove_category_rel_from_category_list'); // Remove invalid rel attribute add_filter('the_excerpt', 'shortcode_unautop'); // Remove auto

    tags in Excerpt (Manual Excerpts only) add_filter('the_excerpt', 'do_shortcode'); // Allows Shortcodes to be executed in Excerpt (Manual Excerpts only) add_filter('excerpt_more', 'html5_blank_view_article'); // Add 'View Article' button instead of [...] for Excerpts add_filter('show_admin_bar', 'remove_admin_bar'); // Remove Admin bar add_filter('style_loader_tag', 'html5_style_remove'); // Remove 'text/css' from enqueued stylesheet add_filter('post_thumbnail_html', 'remove_thumbnail_dimensions', 10); // Remove width and height dynamic attributes to thumbnails add_filter('image_send_to_editor', 'remove_thumbnail_dimensions', 10); // Remove width and height dynamic attributes to post images // Remove Filters remove_filter('the_excerpt', 'wpautop'); // Remove

    tags from Excerpt altogether // Shortcodes add_shortcode('html5_shortcode_demo', 'html5_shortcode_demo'); // You can place [html5_shortcode_demo] in Pages, Posts now. add_shortcode('html5_shortcode_demo_2', 'html5_shortcode_demo_2'); // Place [html5_shortcode_demo_2] in Pages, Posts now. // Shortcodes above would be nested like this - // [html5_shortcode_demo] [html5_shortcode_demo_2] Here's the page title! [/html5_shortcode_demo_2] [/html5_shortcode_demo] /*------------------------------------*\ Custom Post Types \*------------------------------------*/ // Create 1 Custom Post type for a Demo, called io-publication // function create_post_type_iotheme() // { // register_taxonomy_for_object_type('category', 'io-publication'); // Register Taxonomies for Category // register_taxonomy_for_object_type('post_tag', 'io-publication'); // register_post_type('io-publication', // Register Custom Post Type // array( // 'labels' => array( // 'name' => __('Publications', 'iotheme'), // Rename these to suit // 'singular_name' => __('Publication', 'iotheme'), // 'add_new' => __('Add New', 'iotheme'), // 'add_new_item' => __('Add New Publication', 'iotheme'), // 'edit' => __('Edit', 'iotheme'), // 'edit_item' => __('Edit Publication', 'iotheme'), // 'new_item' => __('New Publication', 'iotheme'), // 'view' => __('View Publication', 'iotheme'), // 'view_item' => __('View Publication', 'iotheme'), // 'search_items' => __('Search Publication', 'iotheme'), // 'not_found' => __('No Publications found', 'iotheme'), // 'not_found_in_trash' => __('No Publications found in Trash', 'iotheme') // ), // 'public' => true, // 'hierarchical' => true, // Allows your posts to behave like Hierarchy Pages // 'has_archive' => true, // 'supports' => array( // 'title', // 'editor', // 'excerpt', // 'thumbnail' // ), // Go to Dashboard Custom IO Theme post for supports // 'can_export' => true, // Allows export in Tools > Export // 'taxonomies' => array( // 'post_tag', // 'category' // ) // Add Category and Post Tags support // )); // } /*------------------------------------*\ ShortCode Functions \*------------------------------------*/ // Shortcode Demo with Nested Capability function html5_shortcode_demo($atts, $content = null) { return '

    ' . do_shortcode($content) . '
    '; // do_shortcode allows for nested Shortcodes } // Shortcode Demo with simple

    tag function html5_shortcode_demo_2($atts, $content = null) // Demo Heading H2 shortcode, allows for nesting within above element. Fully expandable. { return '

    ' . $content . '

    '; } /*------------------------------------*\ Custom taxonomy \*------------------------------------*/ // function iotheme_register_taxonomy_client() // { // $labels = [ // 'name' => _x('Clients', 'taxonomy general name'), // 'singular_name' => _x('Client', 'taxonomy singular name'), // 'search_items' => __('Search Clients'), // 'all_items' => __('All Clients'), // 'parent_item' => __('Parent Client'), // 'parent_item_colon' => __('Parent Client:'), // 'edit_item' => __('Edit Client'), // 'update_item' => __('Update Client'), // 'add_new_item' => __('Add New Client'), // 'new_item_name' => __('New Client Name'), // 'menu_name' => __('Client'), // ]; // $args = [ // 'hierarchical' => false, // make it hierarchical (like categories) // 'labels' => $labels, // 'show_ui' => true, // 'show_admin_column' => true, // 'query_var' => true, // 'rewrite' => ['slug' => 'Client'], // 'show_in_rest' => true, // ]; // register_taxonomy('Client', ['post'], $args); // } // add_action('init', 'iotheme_register_taxonomy_client'); ?>