' . get_the_title() . '' ) ); $more = sprintf( '
', esc_url( get_permalink() ), get_the_ID(), $text ); if ( !is_admin() ) { return $more; } } add_filter( 'the_content_more_link', 'advik_blog_lite_content_more' ); /** * Auto add more links. * * @package Advik Blog Lite * @since 1.0 */ function advik_blog_lite_excerpt_more_link( $excerpt ) { if ( is_admin() ) { return $excerpt; } if ( is_home() || is_front_page() ) { $show_readmore = advik_blog_lite_get_theme_mod( 'blog_show_readmore' ); } elseif( is_category() || is_archive() ) { $show_readmore = advik_blog_lite_get_theme_mod( 'cat_show_readmore' ); }else{ $show_readmore = advik_blog_lite_get_theme_mod( 'blog_show_readmore' ); } if( !empty($show_readmore) ){ $excerpt .= advik_blog_lite_content_more(); } return $excerpt; } add_filter( 'the_excerpt', 'advik_blog_lite_excerpt_more_link', 21 ); /** * Prints HTML with meta information for the current post-date/time and categories, tags.. */ function advik_blog_lite_cat_posted_on( $meta = array() ) { $default_meta = array( 'category' => 1, ); if( !empty($meta) && is_array($meta) ) { foreach ($default_meta as $meta_key => $meta_val) { $val = in_array($meta_key, $meta) ? 1 : 0; $result_meta[$meta_key] = $val; } } $result_meta = !empty($result_meta) ? $result_meta : $default_meta; extract( $result_meta, EXTR_SKIP ); if( is_home() || is_front_page() || is_search()) { $category = advik_blog_lite_get_theme_mod( 'blog_show_cat' ); } elseif( is_category() || is_archive() || is_tag() || is_author() ) { $category = advik_blog_lite_get_theme_mod( 'cat_show_cat' ); } // Post Category if( $category ) { /* translators: used between list items, there is a space after the comma */ echo ' '; } } /** * Prints HTML with meta information for the current post-date/time and categories, tags.. */ function advik_blog_lite_posted_on( $meta = array() ) { $default_meta = array( 'post_date' => 1, 'author' => 1, 'comment' => 1, ); if( !empty($meta) && is_array($meta) ) { foreach ($default_meta as $meta_key => $meta_val) { $val = in_array($meta_key, $meta) ? 1 : 0; $result_meta[$meta_key] = $val; } } $result_meta = !empty($result_meta) ? $result_meta : $default_meta; extract( $result_meta, EXTR_SKIP ); if( is_home() || is_front_page() || is_search()) { $post_date = advik_blog_lite_get_theme_mod( 'blog_show_date' ); $author = advik_blog_lite_get_theme_mod( 'blog_show_author' ); $blog_show_comment = advik_blog_lite_get_theme_mod( 'blog_show_comment' ); } elseif( is_category() || is_archive() || is_author() ) { $post_date = advik_blog_lite_get_theme_mod( 'cat_show_date' ); $author = advik_blog_lite_get_theme_mod( 'cat_show_author' ); $blog_show_comment = advik_blog_lite_get_theme_mod( 'cat_show_comment' ); } if( $post_date || $author || !empty( $blog_show_comment ) ){ echo ' '; } } /** * Prints HTML with meta information for the current post and tags.. */ function advik_blog_lite_tags_posted_on( $meta = array() ) { $default_meta = array( 'tag' => 1, ); if( !empty($meta) && is_array($meta) ) { foreach ($default_meta as $meta_key => $meta_val) { $val = in_array($meta_key, $meta) ? 1 : 0; $result_meta[$meta_key] = $val; } } $result_meta = !empty($result_meta) ? $result_meta : $default_meta; extract( $result_meta, EXTR_SKIP ); if( is_home() || is_front_page() || is_search()) { $tag = advik_blog_lite_get_theme_mod( 'blog_show_tags' ); } elseif( is_category() || is_archive() || is_tag() || is_author() ) { $tag = advik_blog_lite_get_theme_mod( 'cat_show_tags' ); } // Hide category and tag text for pages. if ( $tag && 'post' === get_post_type() ) { echo ' '; } } /** * Prints HTML with meta information for the current post-date/time and categories, tags.. */ function advik_blog_lite_latest_posted_on( $meta = array() ) { $default_meta = array( 'post_date' => 1, 'author' => 1, ); if( !empty($meta) && is_array($meta) ) { foreach ($default_meta as $meta_key => $meta_val) { $val = in_array($meta_key, $meta) ? 1 : 0; $result_meta[$meta_key] = $val; } } $result_meta = !empty($result_meta) ? $result_meta : $default_meta; extract( $result_meta, EXTR_SKIP ); if( $post_date || $author){ echo ' '; } } /** * Prints HTML with meta information for the categories, tags and comments. */ function advik_blog_lite_entry_footer() { edit_post_link( sprintf( /* translators: %s: Name of current post */ esc_html__( 'Edit %s', 'advik-blog-lite' ), the_title( '"', '"', false ) ), '', '' ); } /** * Change the tag could args * * @param array $args Widget parameters. * * @return mixed */ function advik_blog_lite_tag_cloud_args( $args ) { $args['largest'] = 1; // Largest tag. $args['smallest'] = 1; // Smallest tag. $args['unit'] = 'em'; // Tag font unit. return $args; } add_filter( 'widget_tag_cloud_args', 'advik_blog_lite_tag_cloud_args' );