Myzwer / foothillschurch

Bootcamp II is a wordpress theme (as well as an inside joke) designed to suit the needs of foothillschurch.com. It makes use of webpack, Babel, Sass, Tailwind, Browsersync, PostCSS, ESLint, Stylelint, Prettier and more. It is meant for that site, but if you can use it by all means go for it.
1 stars 1 forks source link

Just a note about arrays #39

Closed rain2o closed 1 month ago

rain2o commented 1 month ago

https://github.com/Myzwer/foothillschurch/blob/effc5bbf81497ae99f0561ab7849412fe9272bfd/events.php#L39-L40

This isn't an issue; I just wanted to let you know. If you get tired of always writing out array(), you can use []. In the example above it would be 'post_type' => ['event'],. An empty array would be like $arr = []; and with multiple items would be $arr = ['item 1', 'item 2']. Same as array() pretty much in every way except not needing to use the word array.

Just a small ergonomic improvement when writing code.

Myzwer commented 1 month ago

Good to know. 👍