Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created January 15, 2018 04:20
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 braddalton/b23ace7415383713dbb1b8ceadf0a83f to your computer and use it in GitHub Desktop.
Save braddalton/b23ace7415383713dbb1b8ceadf0a83f to your computer and use it in GitHub Desktop.
add_action( 'loop_start', 'ternary_operator_method_three' );
function ternary_operator_method_three() {
$output = is_front_page() ? 'Only on the front page' : 'Otherwise different on all others';
echo $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment