0) {
$string = substr($string, 0, $substr);
}
if(strlen($excerpt)>=$substr){
$string .= $strmore;
}
return $string;
}
}
// The excerpt based on words
if(!function_exists("klasik_string_limit_words")){
function klasik_string_limit_words($string, $word_limit){
$words = explode(' ', $string, ($word_limit + 1));
if(count($words) > $word_limit)
array_pop($words);
return implode(' ', $words);
}
}
/* Remove inline styles printed when the gallery shortcode is used.*/
function klasik_remove_gallery_css( $css ) {
return preg_replace( "##s", '', $css );
}
add_filter( 'gallery_style', 'klasik_remove_gallery_css' );
/*Template for comments and pingbacks. */
if ( ! function_exists( 'klasik_comment' ) ) :
function klasik_comment( $comment, $args, $depth ) {
$GLOBALS['comment'] = $comment;
switch ( $comment->comment_type ) :
case '' :
?>
id="li-comment-">
'."\n";
}
$facebooklink = klasik_get_option( 'klasik_facebook_link', "" );
if($facebooklink!=""){
$facebookicon = $socialfolder . "fb.png" ;
$outputli .= ''."\n";
}
$gpluslink = klasik_get_option( 'klasik_googleplus_link', "" );
if($gpluslink!=""){
$gplusicon = $socialfolder . "googleplus.png" ;
$outputli .= ''."\n";
}
$pinterestlink = klasik_get_option( 'klasik_pinterest_link', "" );
if($pinterestlink!=""){
$pinteresticon = $socialfolder . "pinterest.png" ;
$outputli .= ''."\n";
}
$socialcustom = klasik_get_option( 'klasik_socialicon_custom', "" );
if($socialcustom!=""){
$outputli .= $socialcustom."\n";
}
$output = "";
if($outputli!=""){
$output .= '';
$output .= $outputli;
$output .= '
';
}
return $output;
}
}//end if(!function_exists('klasik_get_socialicon'))
/*Prints HTML with meta information for the current post (category, tags and permalink).*/
if ( ! function_exists( 'ts_posted_in' ) ) :
function ts_posted_in() {
// Retrieves tag list of current post, separated by commas.
$tag_list = get_the_tag_list( '', ', ' );
if ( $tag_list ) {
$posted_in = __( 'Categories: %1$s
Tags: %2$s', 'klasik' );
} elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) {
$posted_in = __( 'Categories: %1$s', 'klasik' );
} else {
$posted_in = __( '', 'klasik' );
}
// Prints the string, replacing the placeholders.
printf(
$posted_in,
get_the_category_list( ', ' ),
$tag_list,
get_permalink(),
the_title_attribute( 'echo=0' )
);
}
endif;
/* for top menu */
function nav_page_fallback() {
if(is_front_page()){$class="current_page_item";}else{$class="";}
print '';
}
/* for shortcode widget */
add_filter('widget_text', 'do_shortcode');
?>