'; } } add_action( 'wp_head', 'blog_zone_pingback_header' ); if ( ! function_exists( 'blog_zone_implement_excerpt_length' ) ) : /** * Implement excerpt length. * * @since 1.0.0 * * @param int $length The number of words. * @return int Excerpt length. */ function blog_zone_implement_excerpt_length( $length ) { $excerpt_length = blog_zone_options( 'excerpt_length' ); if ( absint( $excerpt_length ) > 0 ) { $length = absint( $excerpt_length ); } return $length; } endif; if ( ! function_exists( 'blog_zone_content_more_link' ) ) : /** * Implement read more in content. * * @since 1.0.0 * * @param string $more_link Read More link element. * @param string $more_link_text Read More text. * @return string Link. */ function blog_zone_content_more_link( $more_link, $more_link_text ) { $read_more_text = blog_zone_options( 'readmore_text' ); if ( ! empty( $read_more_text ) ) { $more_link = str_replace( $more_link_text, $read_more_text, $more_link ); } return $more_link; } endif; if ( ! function_exists( 'blog_zone_implement_read_more' ) ) : /** * Implement read more in excerpt. * * @since 1.0.0 * * @param string $more The string shown within the more link. * @return string The excerpt. */ function blog_zone_implement_read_more( $more ) { $output = $more; $read_more_text = blog_zone_options( 'readmore_text' ); $hide_post_btn = blog_zone_options( 'hide_blog_post_btn' ); if ( ! empty( $read_more_text ) ) { if( 1 === absint( $hide_post_btn ) ){ $output = '…'; }else{ $output = '…
'; } } return $output; } endif; if ( ! function_exists( 'blog_zone_hook_read_more_filters' ) ) : /** * Hook read more and excerpt length filters. * * @since 1.0.0 */ function blog_zone_hook_read_more_filters() { if ( is_home() || is_category() || is_tag() || is_author() || is_date() || is_search() ) { add_filter( 'excerpt_length', 'blog_zone_implement_excerpt_length', 999 ); add_filter( 'the_content_more_link', 'blog_zone_content_more_link', 10, 2 ); add_filter( 'excerpt_more', 'blog_zone_implement_read_more' ); } } endif; add_action( 'wp', 'blog_zone_hook_read_more_filters' ); if ( ! function_exists( 'blog_zone_gotop' ) ) : function blog_zone_gotop() { echo ''; } endif; add_action( 'wp_footer', 'blog_zone_gotop' );