'; do_action( 'fl_post_bottom_meta_open' ); } // Categories and Tags if ( $show_cats || $show_tags ) { $tags = get_the_tag_list( '', ', ' ); $cats = get_the_category_list( ', ' ); echo '
'; if ( $show_cats && $cats ) { /* translators: %s: Post Meta Category */ printf( _x( 'Posted in %s', 'Post meta info: category.', '1io' ), $cats ); } if ( $show_tags && $tags ) { if ( $show_cats && $cats ) { /* translators: %s: Continuing of the sentence started with Posted in Category */ printf( _x( ' and tagged %s', 'Post meta info: tags. Continuing of the sentence started with "Posted in Category".', '1io' ), $tags ); } else { /* translators: %s: Post meta info tags */ printf( _x( 'Tagged %s', 'Post meta info: tags.', '1io' ), $tags ); } } echo '
'; } // Comments if ( $comments && ! is_single() ) { comments_popup_link( _x( 'Leave a comment', 'Comments popup link title.', '1io' ), __( '1 Comment', '1io' ), _nx( '1 Comment', '% Comments', get_comments_number(), 'Comments popup link title.', '1io' ) ); } // Close Wrapper if ( $show_cats || $show_tags || $comments ) { do_action( 'fl_post_bottom_meta_close' ); echo ''; } }