HEX
Server: Apache
System: Linux p3plzcpnl505785.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: xuvi7odgswsg (6947073)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /home/xuvi7odgswsg/public_html/wp-content/themes/bb-theme/includes/post-bottom-meta.php
<?php

// Only show if we're showing the full post.
if ( $show_full || is_single() ) {

	// Wrapper
	if ( $show_cats || $show_tags || $comments ) {

		echo '<div class="fl-post-meta fl-post-meta-bottom">';

		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 '<div class="fl-post-cats-tags">';

		if ( $show_cats && $cats ) {
			/* translators: %s: Post Meta Category */
			printf( _x( 'Posted in %s', 'Post meta info: category.', 'fl-automator' ), $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".', 'fl-automator' ), $tags );
			} else {
				/* translators: %s: Post meta info tags */
				printf( _x( 'Tagged %s', 'Post meta info: tags.', 'fl-automator' ), $tags );
			}
		}

		echo '</div>';
	}

	// Comments
	if ( $comments && ! is_single() ) {
		comments_popup_link( _x( 'Leave a comment', 'Comments popup link title.', 'fl-automator' ), __( '1 Comment', 'fl-automator' ), _nx( '1 Comment', '% Comments', get_comments_number(), 'Comments popup link title.', 'fl-automator' ) );
	}

	// Close Wrapper
	if ( $show_cats || $show_tags || $comments ) {

		do_action( 'fl_post_bottom_meta_close' );

		echo '</div>';
	}
}