Last active
December 10, 2019 16:16
-
-
Save itsdavidmorgan/a27aea5c57354694c3c28026419e89c8 to your computer and use it in GitHub Desktop.
bbPress Forum Template With Sidebar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This template is used to display bbPress forums. | |
* | |
* @package Organic Origin | |
* @since Organic Origin 1.0 | |
*/ | |
get_header(); ?> | |
<!-- BEGIN .post class --> | |
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>"> | |
<!-- BEGIN .row --> | |
<div class="row"> | |
<!-- BEGIN .content --> | |
<div class="content"> | |
<?php if ( is_active_sidebar( 'sidebar-forum' ) ) { ?> | |
<!-- BEGIN .twelve columns --> | |
<section class="twelve columns"> | |
<?php get_template_part( 'content/loop', 'page' ); ?> | |
<!-- END .twelve columns --> | |
</section> | |
<!-- BEGIN .four columns --> | |
<section class="four columns"> | |
<!-- BEGIN .sidebar --> | |
<section class="sidebar"> | |
<?php dynamic_sidebar( 'sidebar-forum' ); ?> | |
<!-- END .sidebar --> | |
</section> | |
<!-- END .four columns --> | |
</section> | |
<?php } else { ?> | |
<!-- BEGIN .sixteen columns --> | |
<section class="sixteen columns"> | |
<?php get_template_part( 'content/loop', 'page' ); ?> | |
<!-- END .sixteen columns --> | |
</section> | |
<?php } ?> | |
<!-- END .content --> | |
</div> | |
<!-- END .row --> | |
</div> | |
<!-- END .post class --> | |
</div> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment