• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
WordPress a2z

WordPress a2z

WordPress Dynamic API Reference

  • Home
  • Plugins
  • Themes
  • Shortcodes
  • APIs
  • Classes
  • Files
  • Hooks
  • Sitemap
  • Blog
Home / Files / inc/block-patterns.php


Lines:

1 to 100 of 207
<?php

/**
 * Block Patterns
 *
 * @link https://developer.wordpress.org/reference/functions/register_block_pattern/
 * @link https://developer.wordpress.org/reference/functions/register_block_pattern_category/
 *
 * @package WordPress
 * @subpackage Twenty_Twenty
 * @since Twenty Twenty 1.6
 */


/**
 * Register Block Pattern Category.
 */
if ( function_exists( 'register_block_pattern_category' ) ) {

  register_block_pattern_category(
    'twentytwenty',
    array( 'label' => esc_html__( 'Twenty Twenty', 'twentytwenty' ) )
  );
}


/**
 * Register Block Patterns.
 */
if ( function_exists( 'register_block_pattern' ) ) {

  // Call to Action.
  register_block_pattern(
    'twentytwenty/call-to-action',
    array(
      'title'         => esc_html__( 'Call to Action', 'twentytwenty' ),
      'categories'    => array( 'twentytwenty' ),
      'viewportWidth' => 1400,
      'content'       => implode(
        '',
        array(
          '<!-- wp:group {"align":"wide","style":{"color":{"background":"#ffffff"}}} -->',
          '<div class="wp-block-group alignwide has-background" style="background-color:#ffffff"><div class="wp-block-group__inner-container"><!-- wp:group -->',
          '<div class="wp-block-group"><div class="wp-block-group__inner-container"><!-- wp:heading {"align":"center"} -->',
          '<h2 class="has-text-align-center">' . esc_html__( 'Support the Museum and Get Exclusive Offers', 'twentytwenty' ) . '</h2>',
          '<!-- /wp:heading -->',
          '<!-- wp:paragraph {"align":"center"} -->',
          '<p class="has-text-align-center">' . esc_html__( 'Members get access to exclusive exhibits and sales. Our memberships cost $99.99 and are billed annually.', 'twentytwenty' ) . '</p>',
          '<!-- /wp:paragraph -->',
          '<!-- wp:button {"align":"center","className":"is-style-outline"} -->',
          '<div class="wp-block-button aligncenter is-style-outline"><a class="wp-block-button__link" href="#">' . esc_html__( 'Become a Member', 'twentytwenty' ) . '</a></div>',
          '<!-- /wp:button --></div></div>',
          '<!-- /wp:group --></div></div>',
          '<!-- /wp:group -->',
        )
      ),
    )
  );

  // Double Call to Action.
  register_block_pattern(
    'twentytwenty/double-call-to-action',
    array(
      'title'         => esc_html__( 'Double Call to Action', 'twentytwenty' ),
      'categories'    => array( 'twentytwenty' ),
      'viewportWidth' => 1400,
      'content'       => implode(
        '',
        array(
          '<!-- wp:columns {"align":"wide"} -->',
          '<div class="wp-block-columns alignwide"><!-- wp:column -->',
          '<div class="wp-block-column"><!-- wp:group {"style":{"color":{"background":"#ffffff"}}} -->',
          '<div class="wp-block-group has-background" style="background-color:#ffffff"><div class="wp-block-group__inner-container"><!-- wp:heading {"align":"center"} -->',
          '<h2 class="has-text-align-center">' . esc_html__( 'The Museum', 'twentytwenty' ) . '</h2>',
          '<!-- /wp:heading -->',
          '<!-- wp:paragraph {"align":"center"} -->',
          '<p class="has-text-align-center">' . esc_html__( 'Award-winning exhibitions featuring internationally-renowned artists.', 'twentytwenty' ) . '</p>',
          '<!-- /wp:paragraph -->',
          '<!-- wp:buttons {"align":"center"} -->',
          '<div class="wp-block-buttons aligncenter"><!-- wp:button {"className":"is-style-outline"} -->',
          '<div class="wp-block-button is-style-outline"><a class="wp-block-button__link">' . esc_html__( 'Read More', 'twentytwenty' ) . '</a></div>',
          '<!-- /wp:button --></div>',
          '<!-- /wp:buttons --></div></div>',
          '<!-- /wp:group --></div>',
          '<!-- /wp:column -->',
          '<!-- wp:column -->',
          '<div class="wp-block-column"><!-- wp:group {"style":{"color":{"background":"#ffffff"}}} -->',
          '<div class="wp-block-group has-background" style="background-color:#ffffff"><div class="wp-block-group__inner-container"><!-- wp:heading {"align":"center"} -->',
          '<h2 class="has-text-align-center">' . esc_html__( 'The Store', 'twentytwenty' ) . '</h2>',
          '<!-- /wp:heading -->',
          '<!-- wp:paragraph {"align":"center"} -->',
          '<p class="has-text-align-center">' . esc_html__( 'An awe-inspiring collection of books, prints, and gifts from our exhibitions.', 'twentytwenty' ) . '</p>',
          '<!-- /wp:paragraph -->',
          '<!-- wp:buttons {"align":"center"} -->',
          '<div class="wp-block-buttons aligncenter"><!-- wp:button {"className":"is-style-outline"} -->',
          '<div class="wp-block-button is-style-outline"><a class="wp-block-button__link">' . esc_html__( 'Shop Now', 'twentytwenty' ) . '</a></div>',
          '<!-- /wp:button --></div>',
          '<!-- /wp:buttons --></div></div>',
          '<!-- /wp:group --></div>',
          '<!-- /wp:column --></div>',
[1] [2] [3] Next »

 View on GitHub View on Trac

Called by

    Invoked by

      Calls

      Call hooks

      File name: inc/block-patterns.php
      Plugin ref: Twenty Twenty
      Version: 2.1
      Deprecated?: No
      API Letters: B,I,P

      Published: 10th December 2020 | Last updated: 12th September 2021

      Primary Sidebar

      Information

      File name: inc/block-patterns.php
      Plugin ref: Twenty Twenty
      Version: 2.1
      Deprecated?: No
      API Letters: B,I,P

      inc

      Footer

      WordPress a2z
      WordPress a2z
      WordPress Dynamic API Reference
      WordPress 6.1.1. PHP: 8.0.28
      WordPress a2z
      WordPress core a2z
      Genesis Theme Framework a2z
      Jetpack a2z
      WordPress develop tests
      Easy Digital Downloads a2z
      WooCommerce a2z
      Yoast SEO a2z
      WordPress Blocks

      Site:  wp-a2z.org
      © Copyright WordPress a2z 2014-2023. All rights reserved.


      Website designed and developed by Herb Miller
      Proudly powered by WordPress and oik plugins

      • Home
      • Blog
      • Sitemap
      • Sites