Skip to content

Latest commit

 

History

History
89 lines (64 loc) · 6.56 KB

README.md

File metadata and controls

89 lines (64 loc) · 6.56 KB

WordPress Gems for devs

Repository for code examples and resources used in the "WordPress gems for devs" talk.

Event Date Branch Links
WordCamp Skopje 2024 19 October 2024 conf/WC-skopje-2024 Event | Slides
PHP Serbia 2024 06 September 2024 conf/php-serbia-0924 Event | Slides
WordUp Brighton 03 September 2024 meetup/brighton-0924 Event | Slides | Video

HTML API

What problems does it solve?

It makes manipulation of HTML faster, easier and more controlled.

It is built completely custom, starting with HTML standards, which means the parser is never surprised by the HTML it receives but rather it supports the HTML we will probably never see.

Reference

Examples

Resources

Equivalents in other PHP frameworks

None.

Interactivity API

What problems does it solve?

  • Compatibility with PHP hooks.
  • Inter-block communication.
  • Site-wide features such as client-side navigation.

Reference

Examples

Resources

Equivalents in other PHP frameworks