' . get_the_time( get_option( 'date_format' ) ) . ''; break; case 'author': $meta_html[ $meta ] = '' . get_the_author() . ''; break; case 'category': $meta_html[ $meta ] = '' . get_the_category_list( ', ' ) . ''; break; case 'comments': $meta_html[ $meta ] = '' . __( 'Comments', 'little-jump' ) . ': ' . get_comments_number() . ''; break; case 'tags': $meta_html[ $meta ] = '' . get_the_tag_list( __( 'Tags: ', 'little-jump' ), ', ' ) . ''; break; } } $meta_html = apply_filters( 'littlejump_post_meta_list_html', $meta_html ); $html = ''; foreach ( $meta_list as $meta ) { $html .= $meta_html[ $meta ]; } $html = apply_filters( 'littlejump_post_meta_html', $html ); echo ''; } endif; add_action( 'littlejump_after_post_title', 'littlejump_get_postmeta', 10 ); /* ========================================================================== */ /* set custom posts classes * ========================================================================== */ if ( ! function_exists( 'littlejump_set_post_class' ) ) : function littlejump_set_post_class( $classes ) { if ( ! is_singular() && 'post' == get_post_type() ) { $classes[] = 'anons'; } if ( is_search() ) { $classes[] = 'serp'; } return $classes; } endif; add_filter( 'post_class', 'littlejump_set_post_class' ); /* ========================================================================== */ /* Set Post Excerpt Read More Link * ========================================================================== */ if ( ! function_exists( 'littlejump_the_more_link' ) ): function littlejump_the_more_link() { ?>