Has anyone used something like this to wrap Eloquent in WordPress context? How did it go? Are there better options than this repository that I’m unaware of?
-
Alex Standiford
Does anyone have a good example of how to set up TypeScript using wordpress/scripts?
I have a pretty good idea of how to go about it, but if someone else has already figured it out…
-
Alex Standiford
This popped up in the WP Dev Academy Discord. It looks like @GiveWP is hiring. If you’re looking for a job in #WordPress, definitely give this a gander.
-
Alex Standiford
Curious enough – this post is already a little outdated now that blocks.json is a thing, It’s still good to know how to register the script and styleesheet without the JSON schema.
Sometimes it makes more sense to enqueue it manually. #WordPress
-
Alex Standiford
-
Alex Standiford
If you haven’t checked it out – my beer plugin course covers A LOT of fundamental #WordPressDevelopment skills. I refer to it all the doggone time when I’m trying to remember how I do certain things.
wpdev.academy/course/beer-li…
-
Alex Standiford
We’re going live in an hour!
Learn how to set up and build your first block using the block editor. If you’ve never made a block before, or you’re wanting to get more comfortable with making blocks, check it.
-
Alex Standiford
I’m speaking on a Webinar on Tuesday!
Learn how to set up and build your first block using the block editor. If you’ve never made a block before, or you’re wanting to get more comfortable with making blocks, check it.
-
Alex Standiford
Instructors will earn a revenue share based on the percentage of time premium members spend watching their content.
You’ll also earn recurring income from subscribers referred by you.
Been thinking about making a course? Join me.
-
Alex Standiford
PSA: don’t make your hooks or filters “cute”, where you make them dynamic based on some kind of string concatenation. EG:
do_action( ‘new_’ . $type . ‘_created’ );
It makes searching your code for the right hook much, much harder.
