Category: Code
-
Dashes in Javascript Objects
Super quick note on something that has been bugging me lately. If you’re using dot notation to access Javascript properties, you can’t have a property name with dashes in it (e.g. image.attributes.media_details.sizes.plugin-name-headshot ). Instead you need to use bracket notation with quotation marks. So in replace the example above with image.attributes.media_details.sizes[‘plugin-name-headshot’].
-
WordPress REST API and ACF
I’m continuing to work on the plugin I’ve been talking about in my last few posts and have reached the point of front-end display. The requirements for this project are to have a quick initial page load ( for which I use native PHP) and filtering in place (for which I use the WP REST…
-
The cheap-n-easy way to use “templates” in WordPress plugins
I’m continuing to work on the plugin I talked about in my last post, and have gotten to the point where we’re working on the front end display of the data. I recently sat down and really dedicated myself to figuring out the WordPress Plugin Boilerplate and really like the concept of using “partials” to reuse…