<?php function expensive_cb( $value ) { echo "expensive_cb\n"; return ! strip_tags( $value ); } $title_a = ''; $title_b = 'something'; if ( ! $title_a || ! expensive_cb( $title_a ) ) { echo "no title a\n"; } if ( ! $title_b || ! expensive_cb( $title_b ) ) { echo "no title b"; }
You have javascript disabled. You will not be able to edit any code.