Created
January 23, 2023 19:59
-
-
Save bstonedev/f5202af38d803fa803fc241510f353d1 to your computer and use it in GitHub Desktop.
PHP Fromatting examples
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
<!-- 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