';
$twentig_group_name = esc_html_x( 'Posts', 'Block pattern category', 'default' );
twentig_register_block_pattern(
'twentig/posts-2-columns',
array(
'title' => __( 'Posts 2 columns', 'twentig' ),
'blockTypes' => array( 'core/query' ),
'categories' => array( 'posts' ),
'content' => '
' . $twentig_pagination . '
',
)
);
twentig_register_block_pattern(
'twentig/posts-2-columns-text-only',
array(
'title' => __( 'Posts 2 columns: text only', 'twentig' ),
'blockTypes' => array( 'core/query' ),
'categories' => array( 'posts' ),
'content' => '' . $twentig_pagination . '
',
)
);
twentig_register_block_pattern(
'twentig/posts-2-columns-cover',
array(
'title' => __( 'Posts 2 columns: cover', 'twentig' ),
'blockTypes' => array( 'core/query' ),
'categories' => array( 'posts' ),
'content' => '' . $twentig_pagination . '
'
)
);
twentig_register_block_pattern(
'twentig/posts-3-columns',
array(
'title' => __( 'Posts 3 columns', 'twentig' ),
'blockTypes' => array( 'core/query' ),
'categories' => array( 'posts' ),
'content' => '' . $twentig_pagination . '
',
)
);
twentig_register_block_pattern(
'twentig/posts-3-columns-card',
array(
'title' => __( 'Posts 3 columns: card', 'twentig' ),
'blockTypes' => array( 'core/query' ),
'categories' => array( 'posts' ),
'content' => '' . $twentig_pagination . '
',
)
);
twentig_register_block_pattern(
'twentig/posts-image-on-left',
array(
'title' => __( 'Posts: image on left', 'twentig' ),
'blockTypes' => array( 'core/query' ),
'categories' => array( 'posts' ),
'content' => '
' . $twentig_pagination . '
',
)
);