Açıklama Yok

general-featured-posts.php 1.1KB

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Featured posts block pattern
  4. */
  5. return array(
  6. 'title' => __( 'Featured posts', 'twentytwentytwo' ),
  7. 'categories' => array( 'featured', 'query' ),
  8. 'content' => '<!-- wp:group {"align":"wide","layout":{"inherit":false}} -->
  9. <div class="wp-block-group alignwide"><!-- wp:paragraph {"style":{"typography":{"textTransform":"uppercase"}}} -->
  10. <p style="text-transform:uppercase">' . esc_html__( 'Latest posts', 'twentytwentytwo' ) . '</p>
  11. <!-- /wp:paragraph -->
  12. <!-- wp:query {"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","categoryIds":[],"tagIds":[],"order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false},"displayLayout":{"type":"flex","columns":3}} -->
  13. <div class="wp-block-query"><!-- wp:post-template -->
  14. <!-- wp:post-featured-image {"isLink":true,"width":"","height":"310px"} /-->
  15. <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
  16. <!-- wp:post-excerpt /-->
  17. <!-- wp:post-date {"fontSize":"small"} /-->
  18. <!-- /wp:post-template --></div>
  19. <!-- /wp:query --></div>
  20. <!-- /wp:group -->',
  21. );