Skip to content

Instantly share code, notes, and snippets.

@WPDC

WPDC/or-gate.php Secret

Created December 5, 2015 02:24
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 WPDC/d548da34fbc503f66e2a to your computer and use it in GitHub Desktop.
Save WPDC/d548da34fbc503f66e2a to your computer and use it in GitHub Desktop.
CS0100 3.4 OR Gate - Relating circuit to code
<?php
function maybe_show_top_bar( $is_ok_to_show ) {
if ( is_page() || $is_ok_to_show ) {
showTopbar();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment