Created
May 30, 2023 19:19
-
-
Save mike-henderson/86c37d63399ca94f000de22f6fcb4301 to your computer and use it in GitHub Desktop.
Pattern Nesting Linked Issue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Title: Card Group | |
* Slug: twentytwentythree/card-group | |
* | |
*/ | |
?> | |
<!-- wp:columns --> | |
<div class="wp-block-columns"><!-- wp:column {"width":"50%"} --> | |
<div class="wp-block-column" style="flex-basis:50%"> | |
<!-- wp:pattern {"slug":"twentytwentythree/card"} /--> | |
</div> | |
<!-- /wp:column --> | |
<!-- wp:column {"width":"50%"} --> | |
<div class="wp-block-column" style="flex-basis:50%"> | |
<!-- wp:pattern {"slug":"twentytwentythree/card"} /--> | |
</div> | |
<!-- /wp:column --> | |
</div> | |
<!-- /wp:columns --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Title: Card | |
* Slug: twentytwentythree/card | |
* | |
*/ | |
?> | |
<!-- wp:group {"layout":{"type":"constrained"}} --> | |
<div class="wp-block-group"><!-- wp:image --> | |
<figure class="wp-block-image"><img alt=""/></figure> | |
<!-- /wp:image --> | |
<!-- wp:heading --> | |
<h2 class="wp-block-heading"></h2> | |
<!-- /wp:heading --></div> | |
<!-- /wp:group --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment