| 1 |
<?php |
| 2 |
/** |
| 3 |
* Register Custom Block Styles |
| 4 |
*/ |
| 5 |
|
| 6 |
function PatternsWPGallery_patterns_register_block_patterns() { |
| 7 |
if ( function_exists( 'register_block_pattern' ) ) { |
| 8 |
/** |
| 9 |
* Add your block patterns below |
| 10 |
*/ |
| 11 |
|
| 12 |
/* |
| 13 |
register_block_pattern( |
| 14 |
'PatternsWP-gutenberg-block-patterns/TITLE-OF-YOUR-BLOCK-PATTERN', # Add Hyphens between lowercase words |
| 15 |
array( |
| 16 |
'title' => __( 'TITLE_OF_YOUR_BLOCK_PATTERN', 'PatternsWP-gutenberg-block-patterns' ), |
| 17 |
'content' => "BLOCK_PATTERN_GOES_HERE", |
| 18 |
'categories' => array("CATEGORY"), # eg: columns, text ..etc |
| 19 |
) |
| 20 |
); |
| 21 |
*/ |
| 22 |
|
| 23 |
register_block_pattern( |
| 24 |
'PatternsWPGallery-gutenberg-block-patterns/gallery-one', |
| 25 |
array( |
| 26 |
'title' => __( 'Gallery Section One', 'PatternsWPGallery-gutenberg-block-patterns' ), |
| 27 |
'content' => "<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"64px\",\"right\":\"20px\",\"bottom\":\"64px\",\"left\":\"20px\"},\"blockGap\":\"64px\"}},\"backgroundColor\":\"base\",\"layout\":{\"type\":\"constrained\",\"contentSize\":\"1280px\",\"wideSize\":\"1440px\"}} -->\r\n<div class=\"wp-block-group alignfull has-base-background-color has-background\" style=\"padding-top:64px;padding-right:20px;padding-bottom:64px;padding-left:20px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\r\n<div class=\"wp-block-group\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"36px\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":1.3}},\"textColor\":\"contrast\"} -->\r\n<h2 class=\"wp-block-heading has-text-align-center has-contrast-color has-text-color\" style=\"font-size:36px;font-style:normal;font-weight:800;line-height:1.3\">Gallary</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#666666\"},\"typography\":{\"fontSize\":\"20px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\r\n<p class=\"has-text-align-center has-text-color\" style=\"color:#666666;font-size:20px;font-style:normal;font-weight:300\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae.</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:group -->\r\n\r\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"32px\",\"left\":\"32px\"}}}} -->\r\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"50%\",\"style\":{\"spacing\":{\"blockGap\":\"32px\"}}} -->\r\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:image {\"id\":461,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/624.svg\" alt=\"\" class=\"wp-image-461\"/></figure>\r\n<!-- /wp:image --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"width\":\"50%\",\"style\":{\"spacing\":{\"blockGap\":\"32px\"}}} -->\r\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\r\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":462,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/296.svg\" alt=\"\" class=\"wp-image-462\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:image {\"id\":462,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/296.svg\" alt=\"\" class=\"wp-image-462\"/></figure>\r\n<!-- /wp:image --></div>\r\n<!-- /wp:group -->\r\n\r\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\r\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":462,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/296.svg\" alt=\"\" class=\"wp-image-462\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:image {\"id\":462,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/296.svg\" alt=\"\" class=\"wp-image-462\"/></figure>\r\n<!-- /wp:image --></div>\r\n<!-- /wp:group --></div>\r\n<!-- /wp:column --></div>\r\n<!-- /wp:columns --></div>\r\n<!-- /wp:group -->", |
| 28 |
'categories' => array("patternswp-gallery"), |
| 29 |
) |
| 30 |
); |
| 31 |
|
| 32 |
register_block_pattern( |
| 33 |
'PatternsWPGallery-gutenberg-block-patterns/gallery-two', |
| 34 |
array( |
| 35 |
'title' => __( 'Gallery Section Two', 'PatternsWPGallery-gutenberg-block-patterns' ), |
| 36 |
'content' => "<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"64px\",\"right\":\"20px\",\"bottom\":\"64px\",\"left\":\"20px\"},\"blockGap\":\"64px\"}},\"backgroundColor\":\"base\",\"layout\":{\"type\":\"constrained\",\"contentSize\":\"1280px\",\"wideSize\":\"1440px\"}} -->\r\n<div class=\"wp-block-group alignfull has-base-background-color has-background\" style=\"padding-top:64px;padding-right:20px;padding-bottom:64px;padding-left:20px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\r\n<div class=\"wp-block-group\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"36px\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":1.3}},\"textColor\":\"contrast\"} -->\r\n<h2 class=\"wp-block-heading has-text-align-center has-contrast-color has-text-color\" style=\"font-size:36px;font-style:normal;font-weight:800;line-height:1.3\">Gallary</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#666666\"},\"typography\":{\"fontSize\":\"20px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\r\n<p class=\"has-text-align-center has-text-color\" style=\"color:#666666;font-size:20px;font-style:normal;font-weight:300\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae.</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:group -->\r\n\r\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"32px\",\"left\":\"32px\"}}}} -->\r\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}}} -->\r\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":469,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/405.33_228.svg\" alt=\"\" class=\"wp-image-469\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:image {\"id\":470,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/405.33.svg\" alt=\"\" class=\"wp-image-470\"/></figure>\r\n<!-- /wp:image --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}}} -->\r\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":470,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/405.33.svg\" alt=\"\" class=\"wp-image-470\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:image {\"id\":469,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/405.33_228.svg\" alt=\"\" class=\"wp-image-469\"/></figure>\r\n<!-- /wp:image --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}}} -->\r\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":469,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/405.33_228.svg\" alt=\"\" class=\"wp-image-469\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:image {\"id\":470,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/405.33.svg\" alt=\"\" class=\"wp-image-470\"/></figure>\r\n<!-- /wp:image --></div>\r\n<!-- /wp:column --></div>\r\n<!-- /wp:columns --></div>\r\n<!-- /wp:group -->", |
| 37 |
'categories' => array("patternswp-gallery"), |
| 38 |
) |
| 39 |
); |
| 40 |
|
| 41 |
register_block_pattern( |
| 42 |
'PatternsWPGallery-gutenberg-block-patterns/gallery-three', |
| 43 |
array( |
| 44 |
'title' => __( 'Gallery Section Three', 'PatternsWPGallery-gutenberg-block-patterns' ), |
| 45 |
'content' => "<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"64px\",\"right\":\"20px\",\"bottom\":\"64px\",\"left\":\"20px\"},\"blockGap\":\"64px\"}},\"backgroundColor\":\"base\",\"layout\":{\"type\":\"constrained\",\"contentSize\":\"1280px\",\"wideSize\":\"1440px\"}} -->\r\n<div class=\"wp-block-group alignfull has-base-background-color has-background\" style=\"padding-top:64px;padding-right:20px;padding-bottom:64px;padding-left:20px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\r\n<div class=\"wp-block-group\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"36px\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":1.3}},\"textColor\":\"contrast\"} -->\r\n<h2 class=\"wp-block-heading has-text-align-center has-contrast-color has-text-color\" style=\"font-size:36px;font-style:normal;font-weight:800;line-height:1.3\">Gallary</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#666666\"},\"typography\":{\"fontSize\":\"20px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\r\n<p class=\"has-text-align-center has-text-color\" style=\"color:#666666;font-size:20px;font-style:normal;font-weight:300\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae.</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:group -->\r\n\r\n<!-- wp:columns {\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"32px\",\"left\":\"32px\"}}}} -->\r\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"50%\",\"style\":{\"spacing\":{\"blockGap\":\"32px\"}}} -->\r\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:image {\"id\":461,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/624.svg\" alt=\"\" class=\"wp-image-461\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:image {\"id\":466,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/624_350.svg\" alt=\"\" class=\"wp-image-466\"/></figure>\r\n<!-- /wp:image --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"width\":\"50%\",\"style\":{\"spacing\":{\"blockGap\":\"32px\"}}} -->\r\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:image {\"id\":466,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/624_350.svg\" alt=\"\" class=\"wp-image-466\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:image {\"id\":461,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/04/624.svg\" alt=\"\" class=\"wp-image-461\"/></figure>\r\n<!-- /wp:image --></div>\r\n<!-- /wp:column --></div>\r\n<!-- /wp:columns --></div>\r\n<!-- /wp:group -->", |
| 46 |
'categories' => array("patternswp-gallery"), |
| 47 |
) |
| 48 |
); |
| 49 |
|
| 50 |
register_block_pattern( |
| 51 |
'PatternsWPGallery-gutenberg-block-patterns/gallery-four', |
| 52 |
array( |
| 53 |
'title' => __( 'Gallery Section Four', 'PatternsWPGallery-gutenberg-block-patterns' ), |
| 54 |
'content' => "<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"64px\",\"right\":\"20px\",\"bottom\":\"64px\",\"left\":\"20px\"},\"blockGap\":\"64px\"}},\"backgroundColor\":\"base\",\"layout\":{\"type\":\"constrained\",\"contentSize\":\"1280px\",\"wideSize\":\"1440px\"}} -->\r\n<div class=\"wp-block-group alignfull has-base-background-color has-background\" style=\"padding-top:64px;padding-right:20px;padding-bottom:64px;padding-left:20px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\r\n<div class=\"wp-block-group\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"36px\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":1.3}},\"textColor\":\"contrast\"} -->\r\n<h2 class=\"wp-block-heading has-text-align-center has-contrast-color has-text-color\" style=\"font-size:36px;font-style:normal;font-weight:800;line-height:1.3\">Gallary</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#666666\"},\"typography\":{\"fontSize\":\"20px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\r\n<p class=\"has-text-align-center has-text-color\" style=\"color:#666666;font-size:20px;font-style:normal;font-weight:300\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae.</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:group -->\r\n\r\n<!-- wp:gallery {\"columns\":4,\"linkTo\":\"none\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"24px\",\"left\":\"24px\"}}}} -->\r\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped\"><!-- wp:image {\"id\":893,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-large\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/302_405.svg\" alt=\"\" class=\"wp-image-893\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:image {\"id\":893,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-large\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/302_405.svg\" alt=\"\" class=\"wp-image-893\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:image {\"id\":893,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-large\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/302_405.svg\" alt=\"\" class=\"wp-image-893\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:image {\"id\":893,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-large\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/302_405.svg\" alt=\"\" class=\"wp-image-893\"/></figure>\r\n<!-- /wp:image --></figure>\r\n<!-- /wp:gallery --></div>\r\n<!-- /wp:group -->", |
| 55 |
'categories' => array("patternswp-gallery"), |
| 56 |
) |
| 57 |
); |
| 58 |
|
| 59 |
register_block_pattern( |
| 60 |
'PatternsWPGallery-gutenberg-block-patterns/gallery-five', |
| 61 |
array( |
| 62 |
'title' => __( 'Gallery Section Five', 'PatternsWPGallery-gutenberg-block-patterns' ), |
| 63 |
'content' => "<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"64px\",\"right\":\"20px\",\"bottom\":\"64px\",\"left\":\"20px\"},\"blockGap\":\"64px\"}},\"backgroundColor\":\"base\",\"layout\":{\"type\":\"constrained\",\"contentSize\":\"1280px\",\"wideSize\":\"1440px\"}} -->\r\n<div class=\"wp-block-group alignfull has-base-background-color has-background\" style=\"padding-top:64px;padding-right:20px;padding-bottom:64px;padding-left:20px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\r\n<div class=\"wp-block-group\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"36px\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":1.3}},\"textColor\":\"contrast\"} -->\r\n<h2 class=\"wp-block-heading has-text-align-center has-contrast-color has-text-color\" style=\"font-size:36px;font-style:normal;font-weight:800;line-height:1.3\">Gallary</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#666666\"},\"typography\":{\"fontSize\":\"20px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\r\n<p class=\"has-text-align-center has-text-color\" style=\"color:#666666;font-size:20px;font-style:normal;font-weight:300\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae.</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:group -->\r\n\r\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\"}} -->\r\n<div class=\"wp-block-group\"><!-- wp:columns {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"32px\",\"left\":\"32px\"}}}} -->\r\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"blockGap\":\"32px\"}}} -->\r\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:cover {\"url\":\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320.svg\",\"id\":896,\"dimRatio\":0,\"minHeight\":320,\"contentPosition\":\"bottom left\",\"isDark\":false} -->\r\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-bottom-left\" style=\"min-height:320px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-896\" alt=\"\" src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320.svg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}}} -->\r\n<p class=\"has-text-align-center\" style=\"font-size:16px;font-style:normal;font-weight:500\">Lorem Ipsum</p>\r\n<!-- /wp:paragraph --></div></div>\r\n<!-- /wp:cover -->\r\n\r\n<!-- wp:cover {\"url\":\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320.svg\",\"id\":896,\"dimRatio\":0,\"minHeight\":320,\"contentPosition\":\"bottom left\",\"isDark\":false} -->\r\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-bottom-left\" style=\"min-height:320px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-896\" alt=\"\" src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320.svg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}}} -->\r\n<p class=\"has-text-align-center\" style=\"font-size:16px;font-style:normal;font-weight:500\">Lorem Ipsum</p>\r\n<!-- /wp:paragraph --></div></div>\r\n<!-- /wp:cover --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"blockGap\":\"32px\"}}} -->\r\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:cover {\"url\":\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320.svg\",\"id\":896,\"dimRatio\":0,\"minHeight\":320,\"contentPosition\":\"bottom left\",\"isDark\":false} -->\r\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-bottom-left\" style=\"min-height:320px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-896\" alt=\"\" src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320.svg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}}} -->\r\n<p class=\"has-text-align-center\" style=\"font-size:16px;font-style:normal;font-weight:500\">Lorem Ipsum</p>\r\n<!-- /wp:paragraph --></div></div>\r\n<!-- /wp:cover -->\r\n\r\n<!-- wp:cover {\"url\":\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320.svg\",\"id\":896,\"dimRatio\":0,\"minHeight\":320,\"contentPosition\":\"bottom left\",\"isDark\":false} -->\r\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-bottom-left\" style=\"min-height:320px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-896\" alt=\"\" src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320.svg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}}} -->\r\n<p class=\"has-text-align-center\" style=\"font-size:16px;font-style:normal;font-weight:500\">Lorem Ipsum</p>\r\n<!-- /wp:paragraph --></div></div>\r\n<!-- /wp:cover --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"blockGap\":\"32px\"}}} -->\r\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:cover {\"url\":\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320.svg\",\"id\":896,\"dimRatio\":0,\"minHeight\":320,\"contentPosition\":\"bottom left\",\"isDark\":false} -->\r\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-bottom-left\" style=\"min-height:320px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-896\" alt=\"\" src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320.svg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}}} -->\r\n<p class=\"has-text-align-center\" style=\"font-size:16px;font-style:normal;font-weight:500\">Lorem Ipsum</p>\r\n<!-- /wp:paragraph --></div></div>\r\n<!-- /wp:cover -->\r\n\r\n<!-- wp:cover {\"url\":\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320.svg\",\"id\":896,\"dimRatio\":0,\"minHeight\":320,\"contentPosition\":\"bottom left\",\"isDark\":false} -->\r\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-bottom-left\" style=\"min-height:320px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-896\" alt=\"\" src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320.svg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}}} -->\r\n<p class=\"has-text-align-center\" style=\"font-size:16px;font-style:normal;font-weight:500\">Lorem Ipsum</p>\r\n<!-- /wp:paragraph --></div></div>\r\n<!-- /wp:cover --></div>\r\n<!-- /wp:column --></div>\r\n<!-- /wp:columns --></div>\r\n<!-- /wp:group --></div>\r\n<!-- /wp:group -->", |
| 64 |
'categories' => array("patternswp-gallery"), |
| 65 |
) |
| 66 |
); |
| 67 |
|
| 68 |
register_block_pattern( |
| 69 |
'PatternsWPGallery-gutenberg-block-patterns/gallery-six', |
| 70 |
array( |
| 71 |
'title' => __( 'Gallery Section Six', 'PatternsWPGallery-gutenberg-block-patterns' ), |
| 72 |
'content' => "<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"64px\",\"right\":\"20px\",\"bottom\":\"64px\",\"left\":\"20px\"},\"blockGap\":\"64px\"}},\"backgroundColor\":\"base\",\"layout\":{\"type\":\"constrained\",\"contentSize\":\"1280px\",\"wideSize\":\"1440px\"}} -->\r\n<div class=\"wp-block-group alignfull has-base-background-color has-background\" style=\"padding-top:64px;padding-right:20px;padding-bottom:64px;padding-left:20px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"constrained\"}} -->\r\n<div class=\"wp-block-group\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"36px\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":1.3}},\"textColor\":\"contrast\"} -->\r\n<h2 class=\"wp-block-heading has-text-align-center has-contrast-color has-text-color\" style=\"font-size:36px;font-style:normal;font-weight:800;line-height:1.3\">Gallary</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#666666\"},\"typography\":{\"fontSize\":\"20px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\"}}} -->\r\n<p class=\"has-text-align-center has-text-color\" style=\"color:#666666;font-size:20px;font-style:normal;font-weight:300\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae.</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:group -->\r\n\r\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"32px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\r\n<div class=\"wp-block-group\"><!-- wp:columns {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"32px\",\"left\":\"32px\"}}}} -->\r\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\r\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":901,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320-1.svg\" alt=\"\" class=\"wp-image-901\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\r\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"lineHeight\":\"1.3\"}}} -->\r\n<p style=\"font-size:16px;font-style:normal;font-weight:600;line-height:1.3\">Lorem Ipsum</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"lineHeight\":\"1.3\"},\"color\":{\"text\":\"#666666\"}}} -->\r\n<p class=\"has-text-color\" style=\"color:#666666;font-size:14px;font-style:normal;font-weight:400;line-height:1.3\">Contrary to popular belief</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:group --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\r\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":901,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320-1.svg\" alt=\"\" class=\"wp-image-901\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\r\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"lineHeight\":\"1.3\"}}} -->\r\n<p style=\"font-size:16px;font-style:normal;font-weight:600;line-height:1.3\">Lorem Ipsum</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"lineHeight\":\"1.3\"},\"color\":{\"text\":\"#666666\"}}} -->\r\n<p class=\"has-text-color\" style=\"color:#666666;font-size:14px;font-style:normal;font-weight:400;line-height:1.3\">Contrary to popular belief</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:group --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\r\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":901,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320-1.svg\" alt=\"\" class=\"wp-image-901\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\r\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"lineHeight\":\"1.3\"}}} -->\r\n<p style=\"font-size:16px;font-style:normal;font-weight:600;line-height:1.3\">Lorem Ipsum</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"lineHeight\":\"1.3\"},\"color\":{\"text\":\"#666666\"}}} -->\r\n<p class=\"has-text-color\" style=\"color:#666666;font-size:14px;font-style:normal;font-weight:400;line-height:1.3\">Contrary to popular belief</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:group --></div>\r\n<!-- /wp:column --></div>\r\n<!-- /wp:columns -->\r\n\r\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"32px\",\"left\":\"32px\"}}}} -->\r\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\r\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":901,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320-1.svg\" alt=\"\" class=\"wp-image-901\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\r\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"lineHeight\":\"1.3\"}}} -->\r\n<p style=\"font-size:16px;font-style:normal;font-weight:600;line-height:1.3\">Lorem Ipsum</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"lineHeight\":\"1.3\"},\"color\":{\"text\":\"#666666\"}}} -->\r\n<p class=\"has-text-color\" style=\"color:#666666;font-size:14px;font-style:normal;font-weight:400;line-height:1.3\">Contrary to popular belief</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:group --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\r\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":901,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320-1.svg\" alt=\"\" class=\"wp-image-901\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\r\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"lineHeight\":\"1.3\"}}} -->\r\n<p style=\"font-size:16px;font-style:normal;font-weight:600;line-height:1.3\">Lorem Ipsum</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"lineHeight\":\"1.3\"},\"color\":{\"text\":\"#666666\"}}} -->\r\n<p class=\"has-text-color\" style=\"color:#666666;font-size:14px;font-style:normal;font-weight:400;line-height:1.3\">Contrary to popular belief</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:group --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"blockGap\":\"16px\"}}} -->\r\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"id\":901,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-full\"><img src=\"https://nce-studio-muki.instawp.xyz/wp-content/uploads/2023/05/405_320-1.svg\" alt=\"\" class=\"wp-image-901\"/></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\r\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"lineHeight\":\"1.3\"}}} -->\r\n<p style=\"font-size:16px;font-style:normal;font-weight:600;line-height:1.3\">Lorem Ipsum</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"lineHeight\":\"1.3\"},\"color\":{\"text\":\"#666666\"}}} -->\r\n<p class=\"has-text-color\" style=\"color:#666666;font-size:14px;font-style:normal;font-weight:400;line-height:1.3\">Contrary to popular belief</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:group --></div>\r\n<!-- /wp:column --></div>\r\n<!-- /wp:columns --></div>\r\n<!-- /wp:group --></div>\r\n<!-- /wp:group -->", |
| 73 |
'categories' => array("patternswp-gallery"), |
| 74 |
) |
| 75 |
); |
| 76 |
|
| 77 |
} |
| 78 |
} |
| 79 |
add_action( 'init', 'PatternsWPGallery_patterns_register_block_patterns' ); |
| 80 |
|
| 81 |
|