quote.php 793 B

123456789101112131415
  1. <?php
  2. /**
  3. * Two posts with features images in a query block.
  4. *
  5. * @package Geologist
  6. */
  7. return array(
  8. 'title' => __( 'Quote', 'geologist' ),
  9. 'categories' => array( 'geologist' ),
  10. 'blockTypes' => array( 'core/pullquote' ),
  11. 'content' => '<!-- wp:pullquote {"textColor":"background","className":"has-background-color has-primary-background-color has-text-color has-background"} -->
  12. <figure class="wp-block-pullquote has-background-color has-primary-background-color has-text-color has-background"><blockquote class="has-text-color has-background-color"><p>“' . esc_html__( 'Amazonite, Ametrine, Beryl, Dioptase, Howlite, Jade, and Ruby.', 'geologist' ) . '”</p><cite>' . esc_html__( 'Sarah Edwards', 'geologist' ) . '</cite></blockquote></figure>
  13. <!-- /wp:pullquote -->'
  14. );