Use this gist (in functions.php) to hide the menu item "Posts" in the admin menu
Ternary Operator ?: versus Null Coalescing Operator ?? versus Null Coalescing Assignment Operator ??= explained by cats
In short, PHP provides two useful operators to simplify condition checks: the ternary operator (?:) and the null coalescing operator (??). Both operators are used to tighten up the code and improve readability, but...