mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 09:21:03 +01:00
9759353922
This commit syncs changes for the default theme from its active development repository to core.
This is a follow up to [52081], [52107], [52164], [52222], [52283], [52335], and [52375]. It updates the theme's font size presets and fixes an issue with query padding.
To view the full set of changes, visit 623a4d7982...d6cb56cce4
.
Props schlessera, williampatton, hellofromtonya, kjellr.
See #54318.
Built from https://develop.svn.wordpress.org/trunk@52392
git-svn-id: http://core.svn.wordpress.org/trunk@51984 1a063a9b-81f0-0310-95a4-ce76da25c4cd
32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Text-based grid of posts block pattern
|
|
*/
|
|
return array(
|
|
'title' => __( 'Text-based grid of posts', 'twentytwentytwo' ),
|
|
'categories' => array( 'query' ),
|
|
'blockTypes' => array( 'core/query' ),
|
|
'content' => '<!-- wp:query {"query":{"offset":0,"postType":"post","categoryIds":[],"tagIds":[],"order":"desc","orderBy":"date","author":"","search":"","sticky":"","perPage":12},"displayLayout":{"type":"flex","columns":3},"align":"wide","layout":{"inherit":true}} -->
|
|
<div class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide"} -->
|
|
|
|
<!-- wp:post-title {"isLink":true,"fontSize":"x-large"} /-->
|
|
|
|
<!-- wp:post-excerpt /-->
|
|
|
|
<!-- wp:post-date {"format":"F j, Y","isLink":true,"fontSize":"small"} /-->
|
|
<!-- /wp:post-template -->
|
|
|
|
<!-- wp:separator {"align":"wide","className":"is-style-wide"} -->
|
|
<hr class="wp-block-separator alignwide is-style-wide"/>
|
|
<!-- /wp:separator -->
|
|
|
|
<!-- wp:query-pagination {"paginationArrow":"arrow","align":"wide","layout":{"type":"flex","justifyContent":"space-between"}} -->
|
|
<!-- wp:query-pagination-previous {"fontSize":"small"} /-->
|
|
|
|
<!-- wp:query-pagination-numbers /-->
|
|
|
|
<!-- wp:query-pagination-next {"fontSize":"small"} /-->
|
|
<!-- /wp:query-pagination --></div>
|
|
<!-- /wp:query -->',
|
|
);
|