-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathforum.php
More file actions
executable file
·42 lines (28 loc) · 1019 Bytes
/
Copy pathforum.php
File metadata and controls
executable file
·42 lines (28 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php get_header(); ?>
<main class="cd-main-content streamium-page">
<div class="container-fluid">
<div class="row">
<?php if ( ! is_active_sidebar( 'forum-sidebar' ) ) : ?>
<div class="col-sm-12 col-xs-12">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; else : ?>
<p><?php _e( 'Sorry, no posts matched your criteria.', 'streamium' ); ?></p>
<?php endif; ?>
</div>
<?php else : ?>
<div class="col-sm-9 col-xs-12">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; else : ?>
<p><?php _e( 'Sorry, no posts matched your criteria.', 'streamium' ); ?></p>
<?php endif; ?>
</div>
<div class="col-sm-3 col-xs-12">
<?php dynamic_sidebar('forum-sidebar'); ?>
</div>
<?php endif; ?>
</div>
</div>
</main><!--/.main content-->
<?php get_footer(); ?>