Block Theme Development and Block Bindings API WordPress 6.5

Sdílet
Vložit
  • čas přidán 27. 02. 2024
  • Coming in WordPress 6.5, is a groundbreaking feature: the Block Bindings API and it's all about Binding and Objectifying.But what does that really mean? To me, it signifies a significant leap forward in bridging the gap between classic themes development and the dynamic capabilities of Block Theme development.
    Special thanks to Jamie for advice and cameo shout out! Your support is greatly appreciated.
    / pootlepress

Komentáře • 28

  • @calebmatteis9155
    @calebmatteis9155 Před 2 měsíci +1

    This was an awesome video. It was an efficient and uncompromising tutorial. Great stuff!!!!

  • @Van_____
    @Van_____ Před 4 měsíci +2

    Such a great video, Elliott. Many thanks for introducing this 'new feature'!

  • @WPCookie
    @WPCookie Před 4 měsíci +2

    Hi Elliott,
    Just wanted to let you know that your videos are truly valuable.
    Please keep up the amazing work, as it really makes a difference in the community.
    I look forward to more content like this!

  • @cholo2605
    @cholo2605 Před 5 měsíci +1

    Thanks for sharing!!

  • @aenzgg
    @aenzgg Před 5 měsíci +1

    thanks, great video!

  • @Rbog17
    @Rbog17 Před 4 měsíci +1

    Hopefully next step in G is a UI that implements the API so we don't have to edit the post content markup directly like that?

    • @elliottrichmondwp
      @elliottrichmondwp  Před 4 měsíci +1

      Yeah for sure, now the engineers have done the binding I’m sure there’s more on the horizon 👍

  • @Drivingralle
    @Drivingralle Před 3 měsíci +1

    Great introduction to the topic

  • @jamiewp
    @jamiewp Před 5 měsíci +1

    Great video Elliot 👍

  • @SiteStudio
    @SiteStudio Před 4 měsíci +1

    Looking forward to a proper UI for this to arrive.

  • @thebilalafsar
    @thebilalafsar Před 5 měsíci +1

    Hey bro! Please make a video on WordPress Speed Optimization & Core Web Vitals!

    • @elliottrichmondwp
      @elliottrichmondwp  Před 5 měsíci +4

      It's on the list, but here are a few cheap wins you can implement right away:
      • Review your hosting provider to ensure you're getting the best performance for your budget.
      • Optimize your images to reduce their file size and improve page load times.
      • Monitor and deactivate unused plugins to reduce unnecessary load on your site.
      • Assess which plugins are vital for your site's functionality and monitor the CSS and JS being loaded.
      • Take advantage of the new 'strategy' parameter in WordPress 6.3's wp_enqueue_script() function. Set it to 'defer' or 'async' for scripts to improve load times and Core Web Vitals (CWV) scores.
      • Oh... and avoid throwing mainstream caching plugins to try and solve the issue, its better to resolve what this issue is at source before adding a caching plugin, you'll get much better results that way.
      Implementing these strategies can help improve your site's performance while you work on other optimizations. Hope this helps in the meantime!

  • @visualmodo
    @visualmodo Před 4 měsíci +1

    Video TOP!

  • @rajraiz3058
    @rajraiz3058 Před 3 měsíci +1

    Don't we need ACF anymore if it's once released?

    • @elliottrichmondwp
      @elliottrichmondwp  Před 3 měsíci

      I wouldn’t deactivate ACF at all, core doesn’t have a great UI or UX for this just yet and I’m sure ACF will exploit this new functionality over their next updates

  • @valens5287
    @valens5287 Před 5 měsíci

    Would this work with input fields made by ACF, considering it also saves into post meta?

    • @elliottrichmondwp
      @elliottrichmondwp  Před 5 měsíci +1

      For a very basic single key yes, if you are using complex repeating fields you will need to know the exact key given by ACF, in this first release there aren't any provisions for complex array's or looping data in a Block Theme tempate as they are simply .html files, that said I'm sure there will be some improvements in future releases of WordPress - hope this helps :)

    • @brokeartisan
      @brokeartisan Před 4 měsíci

      You can if you hook twig into the block rendering process

    • @2dstencil847
      @2dstencil847 Před 3 měsíci

      @@brokeartisan That is expert level, hard to find visual learning guide from internet

  • @TheMaxiviper117
    @TheMaxiviper117 Před 4 měsíci

    What about constraining what post metadata can be entered?

    • @elliottrichmondwp
      @elliottrichmondwp  Před 4 měsíci

      Not sure I fully understand what you mean, can add more context to your question.