query-small-posts.php 1.1 KB

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Query: Small image and title.
  4. *
  5. * @package WordPress
  6. */
  7. return array(
  8. 'title' => _x( 'Small image and title', 'Block pattern title' ),
  9. 'blockTypes' => array( 'core/query' ),
  10. 'categories' => array( 'query' ),
  11. 'content' => '<!-- wp:query {"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false}} -->
  12. <div class="wp-block-query">
  13. <!-- wp:post-template -->
  14. <!-- wp:columns {"verticalAlignment":"center"} -->
  15. <div class="wp-block-columns are-vertically-aligned-center"><!-- wp:column {"verticalAlignment":"center","width":"25%"} -->
  16. <div class="wp-block-column is-vertically-aligned-center" style="flex-basis:25%"><!-- wp:post-featured-image {"isLink":true} /--></div>
  17. <!-- /wp:column -->
  18. <!-- wp:column {"verticalAlignment":"center","width":"75%"} -->
  19. <div class="wp-block-column is-vertically-aligned-center" style="flex-basis:75%"><!-- wp:post-title {"isLink":true} /--></div>
  20. <!-- /wp:column --></div>
  21. <!-- /wp:columns -->
  22. <!-- /wp:post-template -->
  23. </div>
  24. <!-- /wp:query -->',
  25. );