-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-bbpress.php
More file actions
executable file
·33 lines (30 loc) · 1.04 KB
/
Copy pathpage-bbpress.php
File metadata and controls
executable file
·33 lines (30 loc) · 1.04 KB
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
<?php
/*
* Template Name: Page Forum Index
*
*/
get_header(); ?>
<div class="content-wrapper-outer">
<div class="content-wrapper" data-sticky_parent>
<?php get_sidebar('docs_top'); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main-two-column">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="page-header">
<div class="top-meta">
<?php bbp_breadcrumb(); ?><div class="clear"></div>
</div><!-- End of .top-meta -->
<h1 class="page-title-archive"><?php the_title(); ?></h1>
</header>
<div class="entry-content">
<?php if( shortcode_exists('bbp-topic-index') ) : echo do_shortcode('[bbp-forum-index]'); endif; ?>
</div>
</article>
<?php endwhile; ?>
</main><!-- End of #main -->
</div><!-- End of #primary -->
<?php get_sidebar('forum'); ?>
</div><!-- End of #content-wrapper -->
</div><!-- End of #content-wrapper-outer -->
<?php get_footer(); ?>