>
'; if ( $title_icon ) $title_icon = ''; $display .= "<{$tag} " . hybridextend_get_attr( 'site-title' ) . '>' . '' . $title_icon; $title = ''; if ( 'text' == $hootubix_logo ) { $title = get_bloginfo( 'name' ); } elseif ( 'custom' == $hootubix_logo ) { $title = hootubix_get_custom_text_logo(); } $display .= apply_filters( 'hootubix_site_title', $title ); $display .= ""; if ( hootubix_get_mod( 'show_tagline' ) ) $display .= hybrid_get_site_description(); $display .= ''; } elseif ( 'mixed' == $hootubix_logo || 'mixedcustom' == $hootubix_logo ) { $tag = ( is_front_page() ) ? 'h1' : 'div'; $logo_image = ( function_exists( 'get_custom_logo' ) ) ? get_custom_logo() : ''; $has_logo = ( function_exists( 'get_custom_logo' ) ) ? has_custom_logo() : hootubix_get_mod( 'logo_image' ); $class = ( $has_logo ) ? 'site-logo-with-image' : ''; if ( !function_exists( 'hootubix_theme_premium' ) ) { $class .= ( 'mixed' == $hootubix_logo ) ? ' site-logo-text-' . hootubix_get_mod( 'logo_size' ) : ''; } $class = ( empty( $class ) ) ? '' : ' class="' . $class . '"'; $display .= ''; } elseif ( 'image' == $hootubix_logo ) { $display .= hootubix_get_logo_image(); } echo apply_filters( 'hootubix_display_logo', $display, $hootubix_logo ); } endif; /** * Returns the custom text logo * * @since 1.0 * @access public * @return string */ if ( !function_exists( 'hootubix_get_custom_text_logo' ) ): function hootubix_get_custom_text_logo() { $title = ''; $logo_custom = apply_filters( 'hootubix_logo_custom_text', hybridextend_sortlist( hootubix_get_mod( 'logo_custom' ) ) ); if ( is_array( $logo_custom ) && !empty( $logo_custom ) ) { $lcount = 1; foreach ( $logo_custom as $logo_custom_line ) { if ( !$logo_custom_line['sortitem_hide'] && !empty( $logo_custom_line['text'] ) ) { $line_class = 'site-title-line site-title-line' . $lcount; $line_class .= ( $logo_custom_line['font'] == 'standard' ) ? ' site-title-body-font' : ''; $line_class .= ( $logo_custom_line['font'] == 'heading2' ) ? ' site-title-heading-font' : ''; $title .= '' . esc_html( $logo_custom_line['text'] ) . ''; } $lcount++; } } return $title; } endif; /** * Returns the image logo * * @since 1.0 * @access public * @return void */ if ( !function_exists( 'hootubix_get_logo_image' ) ): function hootubix_get_logo_image() { $tag = ( is_front_page() ) ? 'h1' : 'div'; $logo_image = ( function_exists( 'get_custom_logo' ) ) ? get_custom_logo() : ''; $has_logo = ( function_exists( 'get_custom_logo' ) ) ? has_custom_logo() : hootubix_get_mod( 'logo_image' ); $class = ''; $class = ( empty( $class ) ) ? '' : ' class="' . $class . '"'; $tagline = ( hootubix_get_mod( 'show_tagline' ) ) ? hybrid_get_site_description() : ''; if ( !empty( $has_logo ) ) { return '
' . "<{$tag} " . hybridextend_get_attr( 'site-title' ) . '>' . $logo_image . "" .'
' . $tagline; } } endif; /** * Display the primary menu area * * @since 1.0 * @access public * @return void */ if ( !function_exists( 'hootubix_header_aside' ) ): function hootubix_header_aside() { $area = esc_attr( hootubix_get_mod( 'primary_menuarea' ) ); if ( $area == 'none' ) return; ?>
>
>
'; return; } $blocks = array(); if ( !empty( $display['author'] ) ) : $blocks['author']['label'] = __( 'By:', 'hoot-ubix' ); ob_start(); the_author_posts_link(); $blocks['author']['content'] = '' . ob_get_clean() . ''; endif; if ( !empty( $display['date'] ) ) : $blocks['date']['label'] = __( 'On:', 'hoot-ubix' ); $blocks['date']['content'] = ''; endif; if ( !empty( $display['cats'] ) ) : $category_list = get_the_category_list(', '); if ( !empty( $category_list ) ) : $blocks['cats']['label'] = __( 'In:', 'hoot-ubix' ); $blocks['cats']['content'] = $category_list; endif; endif; if ( !empty( $display['tags'] ) && get_the_tags() ) : $blocks['tags']['label'] = __( 'Tagged:', 'hoot-ubix' ); $blocks['tags']['content'] = ( ! get_the_tags() ) ? __( 'No Tags', 'hoot-ubix' ) : get_the_tag_list( '', ', ', '' ); endif; if ( !empty( $display['comments'] ) && comments_open() ) : $blocks['comments']['label'] = __( 'With:', 'hoot-ubix' ); ob_start(); comments_popup_link(__( '0 Comments', 'hoot-ubix' ), __( '1 Comment', 'hoot-ubix' ), __( '% Comments', 'hoot-ubix' ), 'comments-link', '' ); $blocks['comments']['content'] = ob_get_clean(); endif; if ( $editlink && $edit_link = get_edit_post_link() ) : $blocks['editlink']['label'] = ''; $blocks['editlink']['content'] = '' . __( 'Edit This', 'hoot-ubix' ) . ''; endif; $blocks = apply_filters( 'hootubix_meta_info_blocks', $blocks, $context, $display, $editlink ); if ( !empty( $blocks ) ) echo '
'; foreach ( $blocks as $key => $block ) { if ( !empty( $block['content'] ) ) { echo '
'; if ( !empty( $block['label'] ) ) echo ' '; echo $block['content']; echo '
'; } } if ( !empty( $display['publisher'] ) ) { static $microdatapublisher; if ( empty( $microdatapublisher ) ) { $pname = get_bloginfo(); if ( function_exists( 'get_custom_logo' ) ) { $iid = intval( get_theme_mod( 'custom_logo' ) ); if ( !empty( $iid ) ) { $isrc = wp_get_attachment_image_src( $iid, 'full' ); if( empty( $isrc ) ) $isrc = wp_get_attachment_image_src( $iid, 'full', true ); if ( !empty( $isrc[0] ) ) { $ilogo = $isrc[0]; $iwidth = ( empty( $isrc[1] ) ) ? '' : $isrc[1]; $iheight = ( empty( $isrc[2] ) ) ? '' : $isrc[2]; } } } if ( empty( $ilogo ) ) $ilogo = $iwidth = $iheight = ''; $microdatapublisher = '' . '' . '' . '' . '' . '' . '' . ''; } echo apply_filters( 'hootubix_entry_byline_publisher', $microdatapublisher ); } if ( !empty( $blocks ) ) echo '
'; } endif; /** * Force meta info block display * * @since 1.2 * @access public * @param array $display * @param $context * @return array */ if ( !function_exists( 'hootubix_meta_info_blocks_forcedisplay' ) ): function hootubix_meta_info_blocks_forcedisplay( $display, $context ) { if ( empty( $context ) ) return $display; if ( !is_array( $context ) ) $context = array_map( 'trim', explode( ',', $context ) ); foreach ( $context as $key ) $display[ $key ] = true; return $display; } endif; add_filter( 'hootubix_meta_info_blocks_display', 'hootubix_meta_info_blocks_forcedisplay', 5, 2 ); /** * Display 404 content * * @since 1.6 * @access public * @return void */ if ( !function_exists( 'hootubix_display_404_content' ) ): function hootubix_display_404_content() { echo esc_html( __( 'Apologies, but no entries were found.', 'hoot-ubix' ) ); } endif; add_action( 'hootubix_404_content', 'hootubix_display_404_content', 5 ); /** * Display the post thumbnail image * * @since 1.0 * @access public * @param string $classes additional classes * @param string $size span or column size or actual image size name. Default is content width span. * @param bool $miscrodata true|false Add microdata or not * @param string $link image link url * @param bool $crop true|false|null Using null will return closest matched image irrespective of its crop setting * @return void */ if ( !function_exists( 'hootubix_post_thumbnail' ) ): function hootubix_post_thumbnail( $classes = '', $size = '', $microdata = false, $link = '', $crop = NULL ) { /* Add custom Classes if any */ $custom_class = ''; if ( !empty( $classes ) ) { $classes = explode( " ", $classes ); foreach ( $classes as $class ) { $custom_class .= ' ' . sanitize_html_class( $class ); } } /* Calculate the size to display */ $thumbnail_size = hootubix_thumbnail_size( $size, $crop ); /* Finally display the image */ if ( $microdata ) { $iid = get_post_thumbnail_id(); if ( !empty( $iid ) ) { $isrc = wp_get_attachment_image_src( $iid, $thumbnail_size ); if( empty( $isrc ) ) $isrc = wp_get_attachment_image_src( $iid, $thumbnail_size, true ); if ( !empty( $isrc[0] ) ) { $iwidth = ( empty( $isrc[1] ) ) ? '' : $isrc[1]; $iheight = ( empty( $isrc[2] ) ) ? '' : $isrc[2]; echo apply_filters( 'hootubix_post_thumbnail_microdata', '
' . '' . '' . '' , $isrc[0], $iwidth, $iheight ); $microdatadisplay = true; } } } if ( empty( $microdatadisplay ) ) echo '
'; $link = esc_url( $link ); if ( !empty( $link ) ) echo ''; the_post_thumbnail( $thumbnail_size, array( 'class' => "attachment-$thumbnail_size $custom_class", 'itemscope' => '' ) ); if ( !empty( $link ) ) echo ''; echo '
'; } endif; /** * Get the thumbnail size * * @since 1.0 * @access public * @param string $size span or column size or actual image size name. Default is content width span. * @param bool $crop true|false|null Using null will return closest matched image irrespective of its crop setting * @return void */ if ( !function_exists( 'hootubix_thumbnail_size' ) ): function hootubix_thumbnail_size( $size = '', $crop = NULL ) { /* Calculate the size to display */ if ( !empty( $size ) ) { if ( 0 === strpos( $size, 'span-' ) || 0 === strpos( $size, 'column-' ) ) $thumbnail_size = hybridextend_get_image_size_name( $size, $crop ); else $thumbnail_size = $size; } else { $size = 'span-' . hootubix_main_layout( 'content' ); $thumbnail_size = hybridextend_get_image_size_name( $size, $crop ); } /* Let child themes filter the size name */ $thumbnail_size = apply_filters( 'hootubix_post_thumbnail' , $thumbnail_size, $size, $crop ); return $thumbnail_size; } endif; /** * Utility function to extract border class for widget based on user option. * * @since 1.0 * @access public * @param string $val string value separated by spaces * @param int $index index for value to extract from $val * @prefix string $prefix prefixer for css class to return * @return void */ if ( !function_exists( 'hootubix_widget_border_class' ) ): function hootubix_widget_border_class( $val, $index=0, $prefix='' ) { $val = explode( " ", trim( $val ) ); if ( isset( $val[ $index ] ) ) return $prefix . trim( $val[ $index ] ); else return ''; } endif; /** * Utility function to create style string attribute. * * @since 1.2 * @access public * @param string $mt margin top * @param string $mb margin bottom * @return string */ if ( !function_exists( 'hootubix_widget_margin_style' ) ): function hootubix_widget_margin_style( $mt='', $mb='' ) { $return = ''; if ( $mt===0 || $mt==='0' ) { $return .= " margin-top:0px;"; } else { $margin = intval( $mt ); if ( !empty( $margin ) ) $return .= " margin-top:{$margin}px;"; } if ( $mb===0 || $mb==='0' ) { $return .= " margin-bottom:0px;"; } else { $margin = intval( $mb ); if ( !empty( $margin ) ) $return .= " margin-bottom:{$margin}px;"; } if ( !empty( $return ) ) $return = ' style="'.$return.'" '; return $return; } endif; /** * Call the following hook at wp_loaded * It must be added after register_sidebars is called * * @since 1.2 * @access public * @return void */ if ( !function_exists( 'hootubix_widgetparam_hook' ) ): function hootubix_widgetparam_hook() { if ( ! is_admin() ) add_filter( 'dynamic_sidebar_params', 'hootubix_modify_widgetparams' ); } endif; add_action( 'wp_loaded', 'hootubix_widgetparam_hook' ); /** * Add custom widget css class and styles * * @since 1.2 * @access public * @param array $params * @return array */ if ( !function_exists( 'hootubix_modify_widgetparams' ) ): function hootubix_modify_widgetparams( $params ) { global $wp_registered_widgets; if ( !isset( $params[0] ) || !isset( $params[0]['widget_id'] ) ) return $params; $widget_id = $params[0]['widget_id']; // Current widget id Eg: hootubix-content-blocks-widget-16 if ( !isset( $wp_registered_widgets[ $widget_id ] ) || !isset( $wp_registered_widgets[ $widget_id ]['params'][0]['number'] ) || !isset( $wp_registered_widgets[ $widget_id ]['callback'][0]->option_name ) ) return $params; $widget_obj = $wp_registered_widgets[ $widget_id ]; // Returns array of callback (Widget object with form options etc), params, classname, description, customize_selective_refresh, class $widget_num = $widget_obj['params'][0]['number']; // Get instance number of current widget (eg: 16) $widget_opt = get_option( $widget_obj['callback'][0]->option_name ); // all instance values of a particular widget (example: option_name = 'widget_hootubix-content-blocks-widget' ) $instance = ( isset ( $widget_opt[ $widget_num ] ) ) ? $widget_opt[ $widget_num ] : array(); // Get values of current widget if ( !empty( $instance['customcss'] ) ) { $custom = $instance['customcss']; $string = 'class="widget'; if ( !empty( $custom['class'] ) ) { $classes = explode( " ", $custom['class'] ); foreach ( $classes as $class ) $string .= ' ' . sanitize_html_class( $class ); } $mt = ( !isset( $custom['mt'] ) ) ? '' : $custom['mt']; $mb = ( !isset( $custom['mb'] ) ) ? '' : $custom['mb']; $string = hootubix_widget_margin_style( $mt, $mb ) . $string; $params[0]['before_widget'] = str_replace( 'class="widget', $string, $params[0]['before_widget'] ); } return $params; } endif; /** * Utility function to map footer sidebars structure to CSS span architecture. * * @since 1.0 * @access public * @return void */ if ( !function_exists( 'hootubix_footer_structure' ) ): function hootubix_footer_structure() { $footers = hootubix_get_mod( 'footer' ); $structure = array( '1-1' => array( 12, 12, 12, 12 ), '2-1' => array( 6, 6, 12, 12 ), '2-2' => array( 4, 8, 12, 12 ), '2-3' => array( 8, 4, 12, 12 ), '3-1' => array( 4, 4, 4, 12 ), '3-2' => array( 6, 3, 3, 12 ), '3-3' => array( 3, 6, 3, 12 ), '3-4' => array( 3, 3, 6, 12 ), '4-1' => array( 3, 3, 3, 3 ), ); if ( isset( $structure[ $footers ] ) ) return $structure[ $footers ]; else return array( 12, 12, 12, 12 ); } endif; /** * Get footer column option. * * @since 1.0 * @access public * @return int */ function hootubix_get_footer_columns() { $footers = hootubix_get_mod( 'footer' ); $columns = ( $footers ) ? intval( substr( $footers, 0, 1 ) ) : false; $columns = ( is_numeric( $columns ) && 0 < $columns ) ? $columns : false; return $columns; } /** * Utility function to map 2 column widths to CSS span architecture. * * @since 1.0 * @access public * @return void */ if ( !function_exists( 'hootubix_col_width_to_span' ) ): function hootubix_col_width_to_span( $col_width ) { $return = array(); switch( $col_width ): case '100': $return[0] = 'hgrid-span-12'; break; case '50-50': default: $return[0] = 'hgrid-span-6'; $return[1] = 'hgrid-span-6'; break; case '33-66': $return[0] = 'hgrid-span-4'; $return[1] = 'hgrid-span-8'; break; case '66-33': $return[0] = 'hgrid-span-8'; $return[1] = 'hgrid-span-4'; break; case '25-75': $return[0] = 'hgrid-span-3'; $return[1] = 'hgrid-span-9'; break; case '75-25': $return[0] = 'hgrid-span-9'; $return[1] = 'hgrid-span-3'; break; case '33-33-33': $return[0] = 'hgrid-span-4'; $return[1] = 'hgrid-span-4'; $return[2] = 'hgrid-span-4'; break; case '25-25-50': $return[0] = 'hgrid-span-3'; $return[1] = 'hgrid-span-3'; $return[2] = 'hgrid-span-6'; break; case '25-50-25': $return[0] = 'hgrid-span-3'; $return[1] = 'hgrid-span-6'; $return[2] = 'hgrid-span-3'; break; case '50-25-25': $return[0] = 'hgrid-span-6'; $return[1] = 'hgrid-span-3'; $return[2] = 'hgrid-span-3'; break; case '25-25-25-25': $return[0] = 'hgrid-span-3'; $return[1] = 'hgrid-span-3'; $return[2] = 'hgrid-span-3'; $return[3] = 'hgrid-span-3'; break; endswitch; return $return; } endif; /** * Wrapper function for hootubix_main_layout() to get the class names for current context. * Can only be used after 'posts_selection' action hook i.e. in 'wp' hook or later. * * @since 1.0 * @access public * @param string $context content|primary-sidebar|sidebar|sidebar-primary * @return string */ if ( !function_exists( 'hootubix_main_layout_class' ) ): function hootubix_main_layout_class( $context ) { return hootubix_main_layout( $context, 'class' ); } endif; /** * Utility function to return layout size or classes for the context. * Can only be used after 'posts_selection' action hook i.e. in 'wp' hook or later. * * @since 1.0 * @access public * @param string $context content|primary-sidebar|sidebar|sidebar-primary * @param string $return class|size return class name or just the span size integer * @return string */ if ( !function_exists( 'hootubix_main_layout' ) ): function hootubix_main_layout( $context, $return = 'size' ) { // Set layout global $hootubix_theme; if ( !isset( $hootubix_theme->currentlayout ) ) hootubix_set_main_layout(); $span_sidebar = $hootubix_theme->currentlayout['sidebar']; $span_content = $hootubix_theme->currentlayout['content']; $layout_class = ' layout-' . $hootubix_theme->currentlayout['layout']; // Return Class or Span Size for the Content/Sidebar if ( $context == 'content' ) { if ( $return == 'class' ) { $extra_class = ( empty( $span_sidebar ) ) ? ' no-sidebar' : ' has-sidebar'; return ' hgrid-span-' . $span_content . $extra_class . $layout_class . ' '; } elseif ( $return == 'size' ) { return intval( $span_content ); } } elseif ( $context == 'sidebar' || $context == 'sidebar-primary' || $context == 'primary-sidebar' || $context == 'secondary-sidebar' || $context == 'sidebar-secondary' ) { if ( $return == 'class' ) { if ( !empty( $span_sidebar ) ) return ' hgrid-span-' . $span_sidebar . $layout_class . ' '; else return ''; } elseif ( $return == 'size' ) { return intval( $span_sidebar ); } } return ''; } endif; /** * Utility function to calculate and set main (content+aside) layout according to the sidebar layout * set by user for the current view. * Can only be used after 'posts_selection' action hook i.e. in 'wp' hook or later. * * @since 1.0 * @access public */ if ( !function_exists( 'hootubix_set_main_layout' ) ): function hootubix_set_main_layout() { // Apply full width for front page if ( is_front_page() && !is_home() ) { $sidebar = 'full-width'; } // Apply Sidebar Layout for Posts elseif ( is_singular( 'post' ) ) { $sidebar = hootubix_get_mod( 'sidebar_posts' ); } // Check for attachment before page (to handle images attached to a page - true for is_page and is_attachment) // Apply 'Full Width' elseif ( is_attachment() ) { $sidebar = 'none'; } // Apply Sidebar Layout for Pages elseif ( is_page() ) { $sidebar = hootubix_get_mod( 'sidebar_pages' ); } // Apply No Sidebar Layout for 404 elseif ( is_404() ) { $sidebar = 'full'; } // Apply Sidebar Layout for Site else { $sidebar = hootubix_get_mod( 'sidebar' ); } // Allow for custom manipulation of the layout by child themes $sidebar = esc_attr( apply_filters( 'hootubix_main_layout', $sidebar ) ); // Save the layout for current view hootubix_set_current_layout( $sidebar ); } endif; /** * Utility function to calculate and set main (content+aside) layout according to the sidebar layout * set by user for the current view. * Can only be used after 'posts_selection' action hook i.e. in 'wp' hook or later. * * @since 1.0 * @access public */ if ( !function_exists( 'hootubix_set_current_layout' ) ): function hootubix_set_current_layout( $sidebar ) { $spans = apply_filters( 'hootubix_main_layout_spans', array( 'none' => array( 'content' => 9, 'sidebar' => 0, ), 'full' => array( 'content' => 12, 'sidebar' => 0, ), 'full-width' => array( 'content' => 12, 'sidebar' => 0, ), 'narrow-right' => array( 'content' => 9, 'sidebar' => 3, ), 'wide-right' => array( 'content' => 8, 'sidebar' => 4, ), 'narrow-left' => array( 'content' => 9, 'sidebar' => 3, ), 'wide-left' => array( 'content' => 8, 'sidebar' => 4, ), 'narrow-left-left' => array( 'content' => 6, 'sidebar' => 3, ), 'narrow-left-right' => array( 'content' => 6, 'sidebar' => 3, ), 'narrow-right-left' => array( 'content' => 6, 'sidebar' => 3, ), 'narrow-right-right' => array( 'content' => 6, 'sidebar' => 3, ), 'default' => array( 'content' => 8, 'sidebar' => 4, ), ) ); /* Set the layout for current view */ global $hootubix_theme; $hootubix_theme->currentlayout['layout'] = $sidebar; if ( isset( $spans[ $sidebar ] ) ) { $hootubix_theme->currentlayout['content'] = $spans[ $sidebar ]['content']; $hootubix_theme->currentlayout['sidebar'] = $spans[ $sidebar ]['sidebar']; } else { $hootubix_theme->currentlayout['content'] = $spans['default']['content']; $hootubix_theme->currentlayout['sidebar'] = $spans['default']['sidebar']; } } endif; /** * Utility function to determine the location of page header * * @since 1.0 * @access public */ if ( !function_exists( 'hootubix_page_header_attop' ) ): function hootubix_page_header_attop() { $full = array_map( 'trim', explode( ',', hootubix_get_mod( 'page_header_full' ) ) ); /* Override For Full Width Pages (including 404 page) */ if ( in_array( 'no-sidebar', $full ) ) { $sidebar_size = hootubix_main_layout( 'primary-sidebar' ); if ( empty( $sidebar_size ) ) return apply_filters( 'hootubix_page_header_attop', true, 'no-sidebar', $full ); } /* For Posts */ if ( is_singular( 'post' ) ) { if ( in_array( 'posts', $full ) ) return apply_filters( 'hootubix_page_header_attop', true, 'posts', $full ); else return apply_filters( 'hootubix_page_header_attop', false, 'posts', $full ); } /* For Pages */ if ( is_page() ) { if ( in_array( 'pages', $full ) ) return apply_filters( 'hootubix_page_header_attop', true, 'pages', $full ); else return apply_filters( 'hootubix_page_header_attop', false, 'pages', $full ); } /* Default */ if ( in_array( 'default', $full ) ) return apply_filters( 'hootubix_page_header_attop', true, 'default', $full ); else return apply_filters( 'hootubix_page_header_attop', false, 'default', $full ); } endif; /** * Utility function to create slider slides array for lite version * * @since 1.0 * @access public */ if ( !function_exists( 'hootubix_get_lite_slider' ) ): function hootubix_get_lite_slider( $type ) { $slides = $data = array(); switch ( $type ) { case 'html': for ( $i = 1; $i <= 4; $i++ ) { $id = intval( hootubix_get_mod( "wt_html_slide_{$i}-content" ) ); if ( !empty( $id ) ) { $postobj = get_post( $id ); $size = hybridextend_get_image_size_name('span-6'); $data[$i]['title'] = ( !empty( $postobj->post_title ) ) ? $postobj->post_title : ''; $data[$i]['content'] = ( !empty( $postobj->post_content ) ) ? apply_filters( 'the_content', $postobj->post_content ) : ''; if ( has_post_thumbnail ( $id ) ) { $isrc = wp_get_attachment_image_src( get_post_thumbnail_id($id), $size ); if( empty( $isrc ) ) $isrc = wp_get_attachment_image_src( get_post_thumbnail_id($id), $size, true ); $data[$i]['image'] = $isrc[0]; } else $data[$i]['image'] = ''; } } for ( $i = 1; $i <= 4; $i++ ) { if ( !empty( $data[$i] ) ) { $slides[ $i ]['image'] = esc_url( $data[$i]['image'] ); $slides[ $i ]['content'] = '

' . esc_html( $data[$i]['title'] ) . '

' . $data[$i]['content']; // $slides[ $i ]['image'] = hootubix_get_mod( "wt_html_slide_{$i}-image" ); // $slides[ $i ]['content'] = hootubix_get_mod( "wt_html_slide_{$i}-content" ); $slides[ $i ]['content_bg'] = hootubix_get_mod( "wt_html_slide_{$i}-content_bg" ); $slides[ $i ]['button'] = hootubix_get_mod( "wt_html_slide_{$i}-button" ); $slides[ $i ]['url'] = hootubix_get_mod( "wt_html_slide_{$i}-url" ); $slides[ $i ]['background']['color'] = hootubix_get_mod( "wt_html_slide_{$i}-background-color" ); $slides[ $i ]['background']['type'] = hootubix_get_mod( "wt_html_slide_{$i}-background-type" ); $slides[ $i ]['background']['pattern'] = hootubix_get_mod( "wt_html_slide_{$i}-background-pattern" ); $slides[ $i ]['background']['image'] = hootubix_get_mod( "wt_html_slide_{$i}-background-image" ); // $slides[ $i ]['background']['repeat'] = hootubix_get_mod( "wt_html_slide_{$i}-background-repeat" ); // $slides[ $i ]['background']['position'] = hootubix_get_mod( "wt_html_slide_{$i}-background-position" ); // $slides[ $i ]['background']['attachment'] = hootubix_get_mod( "wt_html_slide_{$i}-background-attachment" ); } } break; case 'image': case 'img': for ( $i = 1; $i <= 4; $i++ ) { $slides[ $i ]['image'] = hootubix_get_mod( "wt_img_slide_{$i}-image" ); $slides[ $i ]['caption'] = hootubix_get_mod( "wt_img_slide_{$i}-caption" ); $slides[ $i ]['caption_bg'] = hootubix_get_mod( "wt_img_slide_{$i}-caption_bg" ); $slides[ $i ]['url'] = hootubix_get_mod( "wt_img_slide_{$i}-url" ); $slides[ $i ]['button'] = hootubix_get_mod( "wt_img_slide_{$i}-button" ); } break; } return apply_filters( 'hootubix_get_lite_slider_slides', $slides, $type, $data ); } endif; /** * Display function to render posts for Jetpack's infinite scroll module * * @since 1.0 * @access public */ if ( !function_exists( 'hootubix_jetpack_infinitescroll_render' ) ): function hootubix_jetpack_infinitescroll_render(){ while ( have_posts() ) : the_post(); // Loads the template-parts/content-{$post_type}.php template. hybridextend_get_content_template(); endwhile; } endif; /** * Hide title area on static frontpage (not using Widgetized Template) * @todo: Redundant * * @since 1.0 * @access public * @return void */ if ( !function_exists( 'hootubix_hide_loop_meta_static_frontpage' ) ) : function hootubix_hide_loop_meta_static_frontpage( $display ) { if ( is_front_page() ) return 'hide'; else return $display; } endif; add_filter( 'hootubix_loop_meta_display_title', 'hootubix_hide_loop_meta_static_frontpage' ); /** * Return Skype contact button code * Ref: https://www.skype.com/en/developer/create-contactme-buttons/ * * @since 1.0 * @access public * @return void */ if ( !function_exists( 'hootubix_get_skype_button_code' ) ) : function hootubix_get_skype_button_code( $username ) { static $script = false; static $id = 1; $code = ''; $action = apply_filters( 'hootubix_skype_button_action', 'call' ); if ( !$script ) $code .= ''; $code .= '
'; $code .= ''; $code .= '
'; $code = apply_filters( 'hootubix_get_skype_button_code', $code, $script, $id, $action ); $script = true; $id++; return $code; } endif;