Skip to content

Instantly share code, notes, and snippets.

@bstonedev
Created January 23, 2023 19:59
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 bstonedev/f5202af38d803fa803fc241510f353d1 to your computer and use it in GitHub Desktop.
Save bstonedev/f5202af38d803fa803fc241510f353d1 to your computer and use it in GitHub Desktop.
PHP Fromatting examples
<!-- Bad -->
<div class="layout-col-4">
<?php
if ( is_active_sidebar( 'footer_sidebar_one' ) ) {
?>
<div id="footer-sidebar-one" class="footer-sidebar widget-area" role="complementary">
<?php
dynamic_sidebar( 'footer_sidebar_one' );
?>
</div><!-- #footer_sidebar -->
<?php
}
?>
</div>
<!-- Good -->
<div class="layout-col-4">
<?php if(is_active_sidebar('footer_sidebar_one')): ?>
<div id="footer-sidebar-one" class="footer-sidebar widget-area" role="complementary">
<?php dynamic_sidebar( 'footer_sidebar_one' ); ?>
</div><!-- #footer_sidebar -->
<?php endif; ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment