Trying to avoid this example BAD (due to refactoring, or simple human error): ```php $has_free_tag = has_tag( 'free' ); if ( $has_free_tag ) { ... } ``` BETTER: ```php if ( has_tag( 'free' ) ) { ... } ```