[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/block-patterns/ -> text-two-columns.php (source)

   1  <?php
   2  /**
   3   * Two columns of text.
   4   *
   5   * @package WordPress
   6   */
   7  
   8  return array(
   9      'title'       => _x( 'Two columns of text', 'Block pattern title' ),
  10      'categories'  => array( 'columns', 'text' ),
  11      'content'     => '<!-- wp:columns {"align":"full"} -->
  12      <div class="wp-block-columns"><!-- wp:column -->
  13      <div class="wp-block-column"><!-- wp:spacer -->
  14      <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
  15      <!-- /wp:spacer -->
  16      <!-- wp:paragraph {"style":{"typography":{"fontSize":"21px"}, "color":{"text":"#000000"}}} -->
  17      <p class="has-text-color" style="font-size:21px;color:#000000;"><strong>' . esc_html__( 'We have worked with:' ) . '</strong></p>
  18      <!-- /wp:paragraph -->
  19      
  20      <!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","lineHeight":"1.2"}}} -->
  21      <p style="font-size:24px;line-height:1.2"><a href="https://wordpress.org">' . wp_kses_post( __( 'EARTHFUND™<br>ARCHWEEKLY<br>FUTURE ROADS<br>BUILDING NY' ) ) . '</a></p>
  22      <!-- /wp:paragraph -->
  23      
  24      <!-- wp:spacer -->
  25      <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
  26      <!-- /wp:spacer --></div>
  27      <!-- /wp:column -->
  28      
  29      <!-- wp:column -->
  30      <div class="wp-block-column"><!-- wp:spacer {"height":160} -->
  31      <div style="height:160px" aria-hidden="true" class="wp-block-spacer"></div>
  32      <!-- /wp:spacer -->
  33      
  34      <!-- wp:paragraph {"style":{"typography":{"fontSize":"24px","lineHeight":"1.2"}}} -->
  35      <p style="font-size:24px;line-height:1.2"><a href="https://wordpress.org">' . wp_kses_post( __( 'DUBAI ROOFS<br>MAY WATSON STUDIO<br>Y.O.L<br>RUDIMENTAR' ) ) . '</a></p>
  36      <!-- /wp:paragraph -->
  37      
  38      <!-- wp:spacer -->
  39      <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
  40      <!-- /wp:spacer --></div>
  41      <!-- /wp:column --></div>
  42      <!-- /wp:columns -->',
  43      'description' => _x( 'Two columns of text', 'Block pattern description' ),
  44  );


Generated : Tue May 25 08:20:01 2021 Cross-referenced by PHPXref