* 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', 'catchbox_excerpt_length' ); * ... * } * * * For more information on hooks, actions, and filters, see http://codex.wordpress.org/Plugin_API. * * @package Catch Themes * @subpackage Catch_Box * @since Catch Box 1.0 */ /** * Tell WordPress to run catchbox_setup() when the 'after_setup_theme' hook is run. */ add_action( 'after_setup_theme', 'catchbox_setup' ); if ( ! function_exists( 'catchbox_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which runs * before the init hook. The init hook is too late for some features, such as indicating * support post thumbnails. * * To override catchbox_setup() in a child theme, add your own catchbox_setup to your child theme's * functions.php file. * * @uses load_theme_textdomain() For translation/localization support. * @uses add_editor_style() To style the visual editor. * @uses add_theme_support() To add support for post thumbnails, automatic feed links,custom headers and backgrounds. * @uses register_nav_menus() To add support for navigation menus. * @uses register_default_headers() To register the default custom header images provided with the theme. * @uses set_post_thumbnail_size() To set a custom post thumbnail size. * * @since Catch Box 1.0 */ function catchbox_setup() { /** * Global content width. * * Set the content width based on the theme's design and stylesheet. * making it large as we have template without sidebar which is large */ if ( ! isset( $content_width ) ) $content_width = 818; /* Catch Box is now available for translation. * Add your files into /languages/ directory. * @see http://codex.wordpress.org/Function_Reference/load_theme_textdomain */ load_theme_textdomain( 'catchbox', get_template_directory() . '/languages' ); /** * Add callback for custom TinyMCE editor stylesheets. (editor-style.css) * @see http://codex.wordpress.org/Function_Reference/add_editor_style */ add_editor_style(); // Load up our theme options page and related code. require( get_template_directory() . '/inc/theme-options.php' ); // Grab Catch Box's Adspace Widget. require( get_template_directory() . '/inc/widgets.php' ); // Add default posts and comments RSS feed links to . add_theme_support( 'automatic-feed-links' ); /** * Setup title support for theme * Supported from WordPress version 4.1 onwards * More Info: https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/ */ add_theme_support( 'title-tag' ); /** * This feature enables custom-menus support for a theme. * @see http://codex.wordpress.org/Function_Reference/register_nav_menus */ register_nav_menus(array( 'primary' => __( 'Primary Menu', 'catchbox' ), 'secondary' => __( 'Secondary Menu', 'catchbox' ), 'footer' => __( 'Footer Menu', 'catchbox' ) ) ); /** * This feature enables Jetpack plugin Infinite Scroll */ add_theme_support( 'infinite-scroll', array( 'type' => 'click', 'container' => 'content', 'footer_widgets' => array( 'sidebar-2', 'sidebar-3', 'sidebar-4' ), 'footer' => 'page', ) ); // Add support for custom backgrounds add_theme_support( 'custom-background' ); /** * This feature enables post-thumbnail support for a theme. * @see http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); // The next four constants set how Catch Boxsupports custom headers. // The default header text color define( 'HEADER_TEXTCOLOR', '000' ); // By leaving empty, we allow for random image rotation. define( 'HEADER_IMAGE', '' ); // The height and width of your custom header used for site logo. // Add a filter to catchbox_header_image_width and catchbox_header_image_height to change these values. define( 'HEADER_IMAGE_WIDTH', apply_filters( 'catchbox_header_image_width', 300 ) ); define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'catchbox_header_image_height', 125 ) ); // We'll be using post thumbnails for custom header images for logos. // We want them to be the size of the header image that we just defined // Larger images will be auto-cropped to fit, smaller ones will be ignored. See header.php. set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true ); // Add Catch Box's custom image sizes add_image_size( 'featured-header', HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true ); // Used for logo (header) images //disable old image size for featued posts add_image_size( 'featured-slider', 560, 270, true ); add_image_size( 'featured-slider', 644, 320, true ); // Used for featured posts if a large-feature doesn't exist // Add support for custom header add_theme_support( 'custom-header', array( // Header image random rotation default 'random-default' => false, // Header image flex width 'flex-width' => true, // Header image flex height 'flex-height' => true, // Template header style callback 'wp-head-callback' => 'catchbox_header_style', // Admin header style callback 'admin-head-callback' => 'catchbox_admin_header_style', // Admin preview style callback 'admin-preview-callback' => 'catchbox_admin_header_image' ) ); // Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI. register_default_headers( array( 'wheel' => array( 'url' => '%s/images/headers/garden.jpg', 'thumbnail_url' => '%s/images/headers/garden-thumbnail.jpg', /* translators: header image description */ 'description' => __( 'Garden', 'catchbox' ) ), 'shore' => array( 'url' => '%s/images/headers/flower.jpg', 'thumbnail_url' => '%s/images/headers/flower-thumbnail.jpg', /* translators: header image description */ 'description' => __( 'Flower', 'catchbox' ) ), 'trolley' => array( 'url' => '%s/images/headers/mountain.jpg', 'thumbnail_url' => '%s/images/headers/mountain-thumbnail.jpg', /* translators: header image description */ 'description' => __( 'Mountain', 'catchbox' ) ), ) ); } endif; // catchbox_setup if ( ! function_exists( 'catchbox_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @since Catch Box 1.0 */ function catchbox_header_style() { $text_color = get_header_textcolor(); // If no custom options for text are set, let's bail. if ( $text_color == HEADER_TEXTCOLOR ) return; // If we get this far, we have custom styles. Let's do this. ?> Header admin panel. * * @since Catch Box 1.0 */ function catchbox_admin_header_style() { ?> Header admin panel. * * @since Catch Box 1.0 */ function catchbox_admin_header_image() { ?>

onclick="return false;" href="">

>
tag based on what is being viewed. * * @param string $title Default title text for current view. * @param string $sep Optional separator. * @return string The filtered title. */ function catchbox_wp_title( $title, $sep ) { if ( is_feed() ) { return $title; } global $page, $paged; // Add the blog name $title .= get_bloginfo( 'name', 'display' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) { $title .= " $sep $site_description"; } // Add a page number if necessary: if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) { $title .= " $sep " . sprintf( __( 'Page %s', '_s' ), max( $paged, $page ) ); } return $title; } add_filter( 'wp_title', 'catchbox_wp_title', 10, 2 ); /** * Title shim for sites older than WordPress 4.1. * * @link https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/ * @todo Remove this function when WordPress 4.3 is released. */ function catchbox_render_title() { ?> <?php wp_title( '|', true, 'right' ); ?> ' . __( 'Continue reading ', 'catchbox' ) . ''; } endif; /** * Replaces "[...]" (appended to automatically generated excerpts) with an ellipsis and catchbox_continue_reading_link(). * * To override this in a child theme, remove the filter and add your own * function tied to the excerpt_more filter hook. */ function catchbox_auto_excerpt_more( $more ) { return catchbox_continue_reading_link(); } add_filter( 'excerpt_more', 'catchbox_auto_excerpt_more' ); /** * Adds a pretty "Continue Reading" link to custom post excerpts. * * To override this link in a child theme, remove the filter and add your own * function tied to the get_the_excerpt filter hook. */ function catchbox_custom_excerpt_more( $output ) { if ( has_excerpt() && ! is_attachment() ) { $output .= catchbox_continue_reading_link(); } return $output; } add_filter( 'get_the_excerpt', 'catchbox_custom_excerpt_more' ); /** * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link. */ function catchbox_page_menu_args( $args ) { $args['show_home'] = true; return $args; } add_filter( 'wp_page_menu_args', 'catchbox_page_menu_args' ); /** * Replacing classes in default wp_page_menu * * REPLACE "current_page_item" WITH CLASS "current-menu-item" */ function catchbox_page_menu_active( $text ) { $replace = array( // List of classes to replace with "active" 'current_page_item' => 'current-menu-item' ); $text = str_replace(array_keys($replace), $replace, $text); return $text; } add_filter ( 'wp_page_menu', 'catchbox_page_menu_active' ); if ( ! function_exists( 'catchbox_widgets_init' ) ): /** * Register our sidebars and widgetized areas. * * @since Catch Box 1.0 */ function catchbox_widgets_init() { register_widget( 'catchbox_adwidget' ); register_sidebar( array( 'name' => __( 'Main Sidebar', 'catchbox' ), 'id' => 'sidebar-1', 'before_widget' => '", 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Area One', 'catchbox' ), 'id' => 'sidebar-2', 'description' => __( 'An optional widget area for your site footer', 'catchbox' ), 'before_widget' => '", 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Area Two', 'catchbox' ), 'id' => 'sidebar-3', 'description' => __( 'An optional widget area for your site footer', 'catchbox' ), 'before_widget' => '", 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Area Three', 'catchbox' ), 'id' => 'sidebar-4', 'description' => __( 'An optional widget area for your site footer', 'catchbox' ), 'before_widget' => '", 'before_title' => '

', 'after_title' => '

', ) ); } endif; // catchbox_widgets_init add_action( 'widgets_init', 'catchbox_widgets_init' ); if ( ! function_exists( 'catchbox_content_nav' ) ) : /** * Display navigation to next/previous pages when applicable */ function catchbox_content_nav( $nav_id ) { global $wp_query; /** * Check Jetpack Infinite Scroll * if it's active then disable pagination */ if ( class_exists( 'Jetpack', false ) ) { $jetpack_active_modules = get_option('jetpack_active_modules'); if ( $jetpack_active_modules && in_array( 'infinite-scroll', $jetpack_active_modules ) ) { return false; } } if ( $wp_query->max_num_pages > 1 ) { ?> max_num_pages > 1 ) { ?> ]*?href=[\'"](.+?)[\'"]/is', get_the_content(), $matches ) ) return false; return esc_url_raw( $matches[1] ); } if ( ! function_exists( 'catchbox_footer_sidebar_class' ) ): /** * Count the number of footer sidebars to enable dynamic classes for the footer */ function catchbox_footer_sidebar_class() { $count = 0; if ( is_active_sidebar( 'sidebar-2' ) ) $count++; if ( is_active_sidebar( 'sidebar-3' ) ) $count++; if ( is_active_sidebar( 'sidebar-4' ) ) $count++; $class = ''; switch ( $count ) { case '1': $class = 'one'; break; case '2': $class = 'two'; break; case '3': $class = 'three'; break; } if ( $class ) echo 'class="' . $class . '"'; } endif; // catchbox_footer_sidebar_class if ( ! function_exists( 'catchbox_comment' ) ) : /** * Template for comments and pingbacks. * * To override this walker in a child theme without modifying the comments template * simply create your own catchbox_comment(), and that function will be used instead. * * Used as a callback by wp_list_comments() for displaying the comments. * * @since Catch Box 1.0 */ function catchbox_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; switch ( $comment->comment_type ) : case 'pingback' : case 'trackback' : ?>
  • ', '' ); ?>

  • id="li-comment-">
    comment_parent ) $avatar_size = 39; echo get_avatar( $comment, $avatar_size ); /* translators: 1: comment author, 2: date and time */ printf( __( '%1$s on %2$s said:', 'catchbox' ), sprintf( '%s', get_comment_author_link() ), sprintf( '', esc_url( get_comment_link( $comment->comment_ID ) ), get_comment_time( 'c' ), /* translators: 1: date, 2: time */ sprintf( __( '%1$s at %2$s', 'catchbox' ), get_comment_date(), get_comment_time() ) ) ); ?> ', '' ); ?>
    comment_approved == '0' ) : ?>
    __( 'Reply ', 'catchbox' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
    Posted on by ', 'catchbox' ), esc_url( get_permalink() ), esc_attr( get_the_time() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'catchbox' ), get_the_author() ) ), get_the_author() ); } endif; // catchbox_posted_on if ( ! function_exists( 'catchbox_body_classes' ) ) : /** * Adds two classes to the array of body classes. * The first is if the site has only had one author with published posts. * The second is if a singular post being displayed * * @since Catch Box 1.0 */ function catchbox_body_classes( $classes ) { $options = catchbox_get_theme_options(); $layout = $options['theme_layout']; if ( function_exists( 'is_multi_author' ) && !is_multi_author() ) { $classes[] = 'single-author'; } if ( $layout == 'content-sidebar' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) && !is_page_template( 'page-onecolumn.php' ) ) { $classes[] = 'right-sidebar'; } elseif ( $layout == 'sidebar-content' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) && !is_page_template( 'page-onecolumn.php' ) ) { $classes[] = 'left-sidebar'; } elseif ( $layout == 'content-onecolumn' || is_page_template( 'page-onecolumn.php' ) && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) ) { $classes[] = 'no-sidebar one-column'; } elseif ( is_page_template( 'page-disable-sidebar.php' ) || is_attachment() ) { $classes[] = 'no-sidebar'; } elseif ( is_page_template( 'page-fullwidth.php' ) || is_attachment() ) { $classes[] = 'no-sidebar full-width'; } return $classes; } endif; // catchbox_body_classes add_filter( 'body_class', 'catchbox_body_classes' ); /** * Adds in post ID when viewing lists of posts * This will help the admin to add the post ID in featured slider * * @param mixed $post_columns * @return post columns */ function catchbox_post_id_column( $post_columns ) { $beginning = array_slice( $post_columns, 0 ,1 ); $beginning[ 'postid' ] = __( 'ID', 'catchbox' ); $ending = array_slice( $post_columns, 1 ); $post_columns = array_merge( $beginning, $ending ); return $post_columns; } add_filter( 'manage_posts_columns', 'catchbox_post_id_column' ); function catchbox_posts_id_column( $col, $val ) { if( $col == 'postid' ) echo $val; } add_action( 'manage_posts_custom_column', 'catchbox_posts_id_column', 10, 2 ); function catchbox_posts_id_column_css() { echo ''; } add_action( 'admin_head-edit.php', 'catchbox_posts_id_column_css' ); /** * Function to pass the variables for php to js file. * This funcition passes the slider effect variables. */ function catchbox_pass_slider_value() { $options = get_option( 'catchbox_options_slider' ); if( !isset( $options[ 'transition_effect' ] ) ) { $options[ 'transition_effect' ] = "fade"; } if( !isset( $options[ 'transition_delay' ] ) ) { $options[ 'transition_delay' ] = 4; } if( !isset( $options[ 'transition_duration' ] ) ) { $options[ 'transition_duration' ] = 1; } $transition_effect = $options[ 'transition_effect' ]; $transition_delay = $options[ 'transition_delay' ] * 1000; $transition_duration = $options[ 'transition_duration' ] * 1000; wp_localize_script( 'catchbox_slider', 'js_value', array( 'transition_effect' => $transition_effect, 'transition_delay' => $transition_delay, 'transition_duration' => $transition_duration ) ); }//catchbox_pass_slider_value if ( ! function_exists( 'catchbox_sliders' ) ) : /** * This function to display featured posts on index.php * * @get the data value from theme options * @displays on the index * * @useage Featured Image, Title and Content of Post * * @uses set_transient and delete_transient */ function catchbox_sliders() { global $post; //delete_transient( 'catchbox_sliders' ); // get data value from catchbox_options_slider through theme options $options = get_option( 'catchbox_options_slider' ); // get slider_qty from theme options $postperpage = $options[ 'slider_qty' ]; if( ( !$catchbox_sliders = get_transient( 'catchbox_sliders' ) ) && !empty( $options[ 'featured_slider' ] ) ) { echo ''; $catchbox_sliders = '
    '; $get_featured_posts = new WP_Query( array( 'posts_per_page' => $postperpage, 'post__in' => $options[ 'featured_slider' ], 'orderby' => 'post__in', 'ignore_sticky_posts' => 1 // ignore sticky posts )); $i=0; while ( $get_featured_posts->have_posts()) : $get_featured_posts->the_post(); $i++; $title_attribute = esc_attr( apply_filters( 'the_title', get_the_title( $post->ID ) ) ); if ( $i == 1 ) { $classes = "slides displayblock"; } else { $classes = "slides displaynone"; } $catchbox_sliders .= ' '; endwhile; wp_reset_query(); $catchbox_sliders .= '
    '; set_transient( 'catchbox_sliders', $catchbox_sliders, 86940 ); } echo $catchbox_sliders; } endif; // catchbox_sliders if ( ! function_exists( 'catchbox_scripts_method' ) ): /** * Register jquery scripts * * @register jquery cycle and custom-script * hooks action wp_enqueue_scripts */ function catchbox_scripts_method() { global $post; //Register JQuery circle all and JQuery set up as dependent on Jquery-cycle wp_register_script( 'jquery-cycle', get_template_directory_uri() . '/js/jquery.cycle.all.min.js', array( 'jquery' ), '2.9999.5', true ); //Enqueue Slider Script only in Front Page if ( is_front_page() || is_home() ) { wp_enqueue_script( 'catchbox_slider', get_template_directory_uri() . '/js/catchbox_slider.js', array( 'jquery-cycle' ), '1.0', true ); } //Responsive Menu wp_register_script('catchbox-menu', get_template_directory_uri() . '/js/catchbox-menu.min.js', array('jquery'), '1.1.0', true); wp_register_script('catchbox-allmenu', get_template_directory_uri() . '/js/catchbox-allmenu-min.js', array('jquery'), '201301503', true); //Check is secondayand footer menu is enable or not $options = catchbox_get_theme_options(); if ( !empty ($options ['enable_menus'] ) ) : wp_enqueue_script( 'catchbox-allmenu' ); else : wp_enqueue_script( 'catchbox-menu' ); endif; /** * Adds JavaScript to pages with the comment form to support * sites with threaded comments (when in use). */ if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // Loads our main stylesheet. wp_enqueue_style( 'catchbox-style', get_stylesheet_uri() ); /** * Add Genericons font, used in the main stylesheet. */ wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.3' ); /** * Loads up Scroll Up script */ wp_enqueue_script( 'catchbox-scrollup', get_template_directory_uri() . '/js/catchbox-scrollup.min.js', array( 'jquery' ), '20072014', true ); //Browser Specific Enqueue Script i.e. for IE 1-6 $catchbox_ua = strtolower($_SERVER['HTTP_USER_AGENT']); if(preg_match('/(?i)msie [1-6]/',$catchbox_ua)) { wp_enqueue_script( 'catchbox-pngfix', get_template_directory_uri() . '/js/pngfix.min.js' ); } //browser specific queuing i.e. for IE 1-8 if(preg_match('/(?i)msie [1-8]/',$catchbox_ua)) { wp_enqueue_script( 'catchbox-html5', get_template_directory_uri() . '/js/html5.min.js' ); } } endif; // catchbox_scripts_method add_action( 'wp_enqueue_scripts', 'catchbox_scripts_method' ); if ( ! function_exists( 'catchbox_alter_home' ) ): /** * Alter the query for the main loop in home page * @uses pre_get_posts hook */ function catchbox_alter_home( $query ) { $options = get_option( 'catchbox_options_slider' ); if( !isset( $options[ 'exclude_slider_post' ] ) ) { $options[ 'exclude_slider_post' ] = "0"; } if ( $options[ 'exclude_slider_post'] != "0" && !empty( $options[ 'featured_slider' ] ) ) { if( $query->is_main_query() && $query->is_home() ) { $query->query_vars['post__not_in'] = $options[ 'featured_slider' ]; } } } endif; // catchbox_alter_home add_action( 'pre_get_posts','catchbox_alter_home' ); /** * Remove div from wp_page_menu() and replace with ul. * @uses wp_page_menu filter */ function catchbox_wp_page_menu( $page_markup ) { preg_match('/^
    /i', $page_markup, $matches); $divclass = $matches[1]; $replace = array('
    ', '
    '); $new_markup = str_replace($replace, '', $page_markup); $new_markup = preg_replace('/^
    '; } endif; //catchbox_headerdetails // Loads Header Details in catchbox_headercontent hook add_action( 'catchbox_headercontent', 'catchbox_headerdetails', 10 ); if ( ! function_exists( 'catchbox_header_search' ) ) : /** * Header Search Box * * @since Catch Box 2.5 */ function catchbox_header_search() { // Getting data from Theme Options $options = catchbox_get_theme_options(); if ( $options ['disable_header_search'] == 0 ) : get_search_form(); endif; } endif; //catchbox_header_search // Loads Header Search in catchbox_headercontent hook add_action( 'catchbox_headercontent', 'catchbox_header_search', 15 ); if ( ! function_exists( 'catchbox_header_menu' ) ) : /** * Header Menu * * @since Catch Box 2.5 */ function catchbox_header_menu() { ?> '; $catchbox_footer_content = catchbox_assets(); set_transient( 'catchbox_footer_content', $catchbox_footer_content, 86940 ); } echo $catchbox_footer_content; } endif; //catchbox_footer_content // Load footer content in catchbox_site_generator hook add_action( 'catchbox_site_generator', 'catchbox_footer_content', 15 ); /** * This function loads Scroll Up Navigation * * @uses catchbox_after action */ function catchbox_scrollup() { echo ''; } add_action( 'catchbox_after', 'catchbox_scrollup', 10 );