The below example of **Correct** and **Incorrect** is not available in [No Shorthand PHP Tags section of PHP Coding Standards](https://developer.wordpress.org/coding-standards/wordpress-coding-standards/php/#no-shorthand-php-tags). **Correct:** ``` <?php ... ?> <?php echo $var; ?> ``` **Incorrect:** ``` <? ... ?> <?= $var ?> ```