Skip to content

Instantly share code, notes, and snippets.

@thomasplevy
Created November 4, 2016 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasplevy/5c0beee41795bfa53e68311843f4e932 to your computer and use it in GitHub Desktop.
Save thomasplevy/5c0beee41795bfa53e68311843f4e932 to your computer and use it in GitHub Desktop.
<?php // dont copy this line to your functions.php file
add_action( 'lifterlms_before_main_content', 'my_llms_content_wrapper_open' );
function my_llms_content_wrapper_open() {
?>
<div class="ak-container">
<div id="primary" class="content-area right">
<main id="main" class="site-main" role="main">
<?php
}
add_action( 'lifterlms_after_main_content', 'my_llms_content_wrapper_close' );
function my_llms_content_wrapper_close() {
?>
</main><!-- #main -->
</div><!-- #primary -->
<div id="secondary" class="right_right">
<?php
get_sidebar();
?>
</div>
</div>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment