HEX
Server: LiteSpeed
System: Linux node612.namehero.net 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: dfwparty (1186)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/dfwparty/dfwchat.net/wp-content/themes/buddyboss-theme/bbpress/loop-forum-card.php
<?php
	$layout = buddyboss_theme_get_option( 'bbpress_forums_item_layout' );
	$layout_class = '';
	$grid_class = 'lg-grid-1-3';

	if( $layout == 'cover' && bbp_is_forum_archive() && is_archive() ) {
		$grid_class = 'lg-grid-1-4';
	}

	if( $layout == 'cover' ) {
		$layout_class = 'bs-forum-details';
	}
?>

<li class="sm-grid-1-2 md-grid-1-2 lg-grid-1-3 <?php echo $grid_class; ?>">
	<div class="bb-cover-list-item">
        <?php if ( function_exists( 'bbp_get_forum_thumbnail_image' ) ) { ?>
            <a href="<?php bbp_forum_permalink(); ?>" class="bb-cover-wrap" title="<?php bbp_forum_title(); ?>">
                <?php echo bbp_get_forum_thumbnail_image( bbp_get_forum_id(), 'large', 'full' ); ?>
            </a>
        <?php } ?>

		<div class="bs-card-forum-details <?php echo $layout_class; ?>">
			<div class="bs-sec-header">
				<?php do_action( 'bbp_theme_before_forum_title' ); ?>
				<h3><a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>"><?php bbp_forum_title(); ?></a></h3>
				<?php do_action( 'bbp_theme_after_forum_title' ); ?>
			</div>

			<div class="bb-forum-content-wrap">
				<?php
					do_action( 'bbp_theme_before_forum_description' );
					remove_filter( 'bbp_get_forum_content', 'wpautop' );
				?>
				<div class="bb-forum-content"><?php echo bbp_get_forum_content_excerpt_view_more( bbp_get_forum_id(), 150, '&hellip;' ); ?></div>
				<?php
					add_filter( 'bbp_get_forum_content', 'wpautop' );
					do_action( 'bbp_theme_after_forum_description' );
				?>
			</div>

			<div class="forums-meta bb-forums-meta"><?php
				do_action( 'bbp_theme_before_forum_sub_forums' );

				$r = array(
						'before'            => '',
						'after'             => '',
						'link_before'       => '<span>',
						'link_after'        => '</span>',
						'count_before'      => ' (',
						'count_after'       => ')',
						'count_sep'         => ', ',
						'separator'         => ' ',
						'forum_id'          => '',
						'show_topic_count'  => false,
						'show_reply_count'  => false,
					);

				bbp_list_forums($r);

				do_action( 'bbp_theme_after_forum_sub_forums' ); ?></div>

			<?php if( $layout != 'cover' ) { ?>
				<div class="bs-timestamp">
					<?php do_action( 'bbp_theme_before_forum_freshness_link' ); ?>
					<?php bbp_forum_freshness_link(); ?>
					<?php do_action( 'bbp_theme_after_forum_freshness_link' ); ?>
				</div>
			<?php } ?>
		</div>
	</div>
</li>