Skip to content

Instantly share code, notes, and snippets.

@isotrope
Created November 19, 2020 22:58
Show Gist options
  • Save isotrope/a691ae84fa44351cce6015421729fe7f to your computer and use it in GitHub Desktop.
Save isotrope/a691ae84fa44351cce6015421729fe7f to your computer and use it in GitHub Desktop.
Hi Josh!
<?php
$classes = [];
// bunch of code
if( some condition) {
$classes[] = 'has-thumbs';
}
// bunch of code
if( .. IDK ... count( $array_bla ) > 4) {
$classes[] = 'webmasters-went-cray-cray';
}
// to be super super super super safe
array_walk($classes, function( $class_name ) {
return sanitize_title($class_name);
});
?>
<div class="container <?php echo implode(' ', $classes); ?>"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment