-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbbpress.php
More file actions
executable file
·33 lines (29 loc) · 960 Bytes
/
Copy pathbbpress.php
File metadata and controls
executable file
·33 lines (29 loc) · 960 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
<?php
/*
* Template to Display bbPress
*
*/
get_header(); ?>
<div class="content-wrapper-outer">
<div class="content-wrapper" data-sticky_parent>
<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 the_content(); ?>
</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(); ?>