wordpress plugins

WordPress Plugin Advancement: Gutenberg Blocks, React & More

https://www.youtu be.com/watch?v=hbJiwm5YL5Q

Join my complete course: https://www.udemy.com/course/become-a-wordpress-developer-php-javascript/?couponCode=NOVEMBERWEEK This video presumes you’re currently acquainted with WordPress and how how to set up a regional dev environment. If you aren’t acquainted with that yet I recommend seeing another among my videos initially: https://www.youtube.com/watch?v=FVqzKAUsM68 0:00:00 Introduction 0:02:56 Summary 0:16:32 Our Very first Plugin 0:27:12 Settings Page 0:42:11 Settings API 1:02:02 Settings Kind 1:22:01 Word Count 1:41:57 Localization 2:02:12 JavaScript Introduction 2:21:57 JSX & Workflow 2:41:43 Block Elements 3:01:42 Block Output 3:24:01 Pros & Cons of Custom-made Post Types Follow me for updates on brand-new videos or jobs: Instagram: https://www.instagram.com/javaschiff/ Twitter: https://twitter.com/learnwebcode Facebook: https://www.facebook.com/Brad-Schiff-1542576316048470/ Jerk: https://www.twitch.tv/learnwebcode

21 thoughts on “WordPress Plugin Advancement: Gutenberg Blocks, React & More

  1. I got my first wordpress dev job 5 years ago because of you and your wordpress custom theme Playlist.

    1. Me too, but 2 years ago. Still have an Amazing University theme on my local machine as a relic 😀

    2. So, the logical operators like AND and OR do have a hierarchy like have the mathematical operators like * (multiply) and + (addition).
      And takes precedence to OR the same way that multiplication takes precedence to addition. So..

      1. a AND b AND c is the exact same as
      2. a AND (b AND c)

      while also
      1. a * b * c is the exact same as
      2. a * (b * c)

      and
      1. a AND b AND c AND (d OR e OR f) is therefore the same as
      2. a AND (b AND c AND (d OR e OR f)) is the same as
      3. a AND (b AND c) AND (d OR e OR f)

      but you need the paranthesis around the OR if you want them, grouped because OR os lower in the hiearchy than AND so

      1. a AND b AND c AND (d OR e OR f) is NOT the same as
      2. a AND b AND c AND d OR e OR f

      Now, the reason why this hiearchy is important, is both for readability and for performance.

      There is no reason to add paranthesis where the hiearchy will naturally do the same. For readability, it just makes it more hard to read when there is unnnecessary clutter in the code.
      But also for performance one should not add paranthesis arbitrarily. Do not add things that are not necessary for the computer to buggle with.

      Instead, learn the hiearchy for logical operators, it will *_really_* help you make more readable and faster code.

  2. It is going to make a lot of people think if you add the keyword our it really make it ours and unique😂

  3. I seldom reply to youtube I am a WordPress enthusiast but I am curious if the same page holds multiple sections and the anchored menu travels to each section how is it possible to make it dynamic? if a site contains multiple different page templates then how will we be able to make it a dynamic website in WordPress? if we have an owl carousel then how can we make it dynamic from Gutenberg (carousel will contain image link buttons etc which will be coming from the gallery)? if there will be multiple horizontal mega menus how can we make it dynamic?

  4. hi, cant see discount coupon for the full course, if posible to get it. thanks a lot!

    1. In the most recent few videos on my channel there’s a link in the description to a page on my site with updated coupons. Udemy only lets the instructor-created coupons last for 4-5 days so it’s challenging to always keep one up and running, but I think the current batch is good for another day or two.

  5. After following this free couse I couldn’t resist to buy the full course 🙂 You are one kind of a teacher!

  6. Hey do you have any video that teach about coding wordpress user login form with data base? If there give me the link…

  7. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

  8. Wait is this Brad Schiff?
    Dude I took your Udemy course to land up my first tech job in Lockdown you are a legend my man

Comments are closed.