2021-05-21 07:13:57 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Query: Standard.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
|
|
|
return array(
|
2021-05-24 09:53:56 -04:00
|
|
|
'title' => _x( 'Standard', 'Block pattern title' ),
|
2021-05-21 07:13:57 -04:00
|
|
|
'blockTypes' => array( 'core/query' ),
|
|
|
|
'categories' => array( 'query' ),
|
2022-04-12 05:26:16 -04:00
|
|
|
'content' => '<!-- wp:query {"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false}} -->
|
2021-05-21 07:13:57 -04:00
|
|
|
<div class="wp-block-query">
|
2021-06-08 13:33:22 -04:00
|
|
|
<!-- wp:post-template -->
|
2021-05-21 07:13:57 -04:00
|
|
|
<!-- wp:post-title {"isLink":true} /-->
|
|
|
|
<!-- wp:post-featured-image {"isLink":true,"align":"wide"} /-->
|
|
|
|
<!-- wp:post-excerpt /-->
|
|
|
|
<!-- wp:separator -->
|
|
|
|
<hr class="wp-block-separator"/>
|
|
|
|
<!-- /wp:separator -->
|
|
|
|
<!-- wp:post-date /-->
|
2021-06-08 13:33:22 -04:00
|
|
|
<!-- /wp:post-template -->
|
2021-05-21 07:13:57 -04:00
|
|
|
</div>
|
|
|
|
<!-- /wp:query -->',
|
|
|
|
);
|