"; if(!empty($appointment_bg_v)){ $appointment_bg_v = '.appointment { background: url("'.esc_url($appointment_bg_v).'") no-repeat scroll right bottom rgba(0, 0, 0, 0); }'; echo $appointment_bg_v; echo "\n"; } echo "\n"; //Custom CSS CODE $custom_css = get_theme_mod('eightmedi_lite_custom_tools_css'); if(!empty($custom_css)){ echo "\n"; } //custom js $custom_js = get_theme_mod('eightmedi_lite_custom_tools_js'); if(!empty($custom_js)){ echo ''; } } add_action('wp_head','em_header_scripts'); function eightmedi_lite_web_layout($classes){ $web_layout = get_theme_mod('eightmedi_lite_webpage_layout','fullwidth'); if($web_layout == 'boxed'){ $classes[]= 'boxed-layout'; } elseif($web_layout == 'fullwidth'){ $classes[]='fullwidth'; } return $classes; } add_filter( 'body_class', 'eightmedi_lite_web_layout' ); add_action('wp_head','eightmedi_lite_homepage_slider_config'); //homepage slider configuration settings function eightmedi_lite_homepage_slider_config(){ $display_slider = (get_theme_mod('eightmedi_lite_display_slider'))?get_theme_mod('eightmedi_lite_display_slider'):"1"; if(get_theme_mod('eightmedi_lite_display_pager')!=''){ $display_pager = get_theme_mod('eightmedi_lite_display_pager'); ($display_pager=='1')?$display_pager='true':$display_pager='false'; }else{ $display_pager = "true"; } if(get_theme_mod('eightmedi_lite_display_controls')!=''){ $display_controls = get_theme_mod('eightmedi_lite_display_controls'); ($display_controls=='1')?$display_controls='true':$display_controls='false'; }else{ $display_controls = "true"; } if(get_theme_mod('eightmedi_lite_auto_transition')!=''){ $auto_transition = get_theme_mod('eightmedi_lite_auto_transition'); ($auto_transition=='1')?$auto_transition='true':$auto_transition='false'; }else{ $auto_transition = "true"; } if(get_theme_mod('eightmedi_lite_transition_type','0')!=''){ $transition_type = get_theme_mod('eightmedi_lite_transition_type','0'); ($transition_type=='1')?$transition_type='horizontal':$transition_type='fade'; }else{ $transition_type = "fade"; } if(get_theme_mod('eightmedi_lite_transition_speed')!=''){ $transition_speed = get_theme_mod('eightmedi_lite_transition_speed','5000'); } else { $transition_speed = '5000'; } if(get_theme_mod('eightmedi_lite_transition_pause')!=''){ $transition_pause = get_theme_mod('eightmedi_lite_transition_pause','1000'); } else { $transition_pause = '1000'; } if( $display_slider != "0") : ?>
$slider_category, 'posts_per_page' => -1 ) ); ?>
have_posts()) { while($loop->have_posts()) { $loop->the_post(); $image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full', false ); ?>
<?php the_title(); ?>
/', '', $eightmedi_lite_text)) <= $eightmedi_lite_length) { return $eightmedi_lite_text; } // splits all html-tags to scanable lines preg_match_all('/(<.+?>)?([^<>]*)/s', $eightmedi_lite_text, $eightmedi_lite_lines, PREG_SET_ORDER); $eightmedi_lite_total_length = strlen($eightmedi_lite_ending); $eightmedi_lite_open_tags = array(); $eightmedi_lite_truncate = ''; foreach ($eightmedi_lite_lines as $eightmedi_lite_line_matchings) { // if there is any html-tag in this line, handle it and add it (uncounted) to the output if (!empty($eightmedi_lite_line_matchings[1])) { // if it’s an “empty element” with or without xhtml-conform closing slash (f.e.) if (preg_match('/^<(\s*.+?\/\s*|\s*(img|br|input|hr|area|base|basefont|col|frame|isindex|link|meta|param)(\s.+?)?)>$/is', $eightmedi_lite_line_matchings[1])) { // do nothing // if tag is a closing tag (f.e.) } else if (preg_match('/^<\s*\/([^\s]+?)\s*>$/s', $eightmedi_lite_line_matchings[1], $eightmedi_lite_tag_matchings)) { // delete tag from $open_tags list $eightmedi_lite_pos = array_search($eightmedi_lite_tag_matchings[1], $eightmedi_lite_open_tags); if ($eightmedi_lite_pos !== false) { unset($eightmedi_lite_open_tags[$eightmedi_lite_pos]); } // if tag is an opening tag (f.e. ) } else if (preg_match('/^<\s*([^\s>!]+).*?>$/s', $eightmedi_lite_line_matchings[1], $eightmedi_lite_tag_matchings)) { // add tag to the beginning of $open_tags list array_unshift($eightmedi_lite_open_tags, strtolower($eightmedi_lite_tag_matchings[1])); } // add html-tag to $truncate’d text $eightmedi_lite_truncate .= $eightmedi_lite_line_matchings[1]; } // calculate the length of the plain text part of the line; handle entities as one character $eightmedi_lite_content_length = strlen(preg_replace('/&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};/i', ' ', $eightmedi_lite_line_matchings[2])); if ($eightmedi_lite_total_length+$eightmedi_lite_content_length > $eightmedi_lite_length) { // the number of characters which are left $eightmedi_lite_left = $eightmedi_lite_length - $eightmedi_lite_total_length; $eightmedi_lite_entities_length = 0; // search for html entities if (preg_match_all('/&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};/i', $eightmedi_lite_line_matchings[2], $eightmedi_lite_entities, PREG_OFFSET_CAPTURE)) { // calculate the real length of all entities in the legal range foreach ($eightmedi_lite_entities[0] as $eightmedi_lite_entity) { if ($eightmedi_lite_entity[1]+1-$eightmedi_lite_entities_length <= $eightmedi_lite_left) { $eightmedi_lite_left--; $eightmedi_lite_entities_length += strlen($eightmedi_lite_entity[0]); } else { // no more characters left break; } } } $eightmedi_lite_truncate .= substr($eightmedi_lite_line_matchings[2], 0, $eightmedi_lite_left+$eightmedi_lite_entities_length); // maximum lenght is reached, so get off the loop break; } else { $eightmedi_lite_truncate .= $eightmedi_lite_line_matchings[2]; $eightmedi_lite_total_length += $eightmedi_lite_content_length; } // if the maximum length is reached, get off the loop if($eightmedi_lite_total_length >= $eightmedi_lite_length) { break; } } } else { if (strlen($eightmedi_lite_text) <= $eightmedi_lite_length) { return $eightmedi_lite_text; } else { $eightmedi_lite_truncate = substr($eightmedi_lite_text, 0, $eightmedi_lite_length - strlen($eightmedi_lite_ending)); } } // if the words shouldn't be cut in the middle... if (!$eightmedi_lite_exact) { // ...search the last occurance of a space... $eightmedi_lite_spacepos = strrpos($eightmedi_lite_truncate, ' '); if (isset($eightmedi_lite_spacepos)) { // ...and cut the text in this position $eightmedi_lite_truncate = substr($eightmedi_lite_truncate, 0, $eightmedi_lite_spacepos); } } // add the defined ending to the text $eightmedi_lite_truncate .= $eightmedi_lite_ending; if($eightmedi_lite_considerHtml) { // close all unclosed html-tags foreach ($eightmedi_lite_open_tags as $eightmedi_lite_tag) { $eightmedi_lite_truncate .= ''; } } return $eightmedi_lite_truncate; }