404.php 621 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * A 404 page
  4. *
  5. * @package Blockbase
  6. */
  7. return array(
  8. 'title' => __( '404', 'blockbase' ),
  9. 'categories' => array( 'blockbase' ),
  10. 'inserter' => false,
  11. 'content' => '<!-- wp:heading {"textAlign":"center","level":1,"fontSize":"medium"} -->
  12. <h1 class="has-text-align-center has-medium-font-size" id="oops-that-page-can-t-be-found">' . esc_html__( "Oops! That page can&rsquo;t be found.", "blockbase" ) . '</h1>
  13. <!-- /wp:heading -->
  14. <!-- wp:paragraph -->
  15. <p>' . esc_html__( "It looks like nothing was found at this location. Maybe try a search?", "blockbase" ) . '</p>
  16. <!-- /wp:paragraph -->',
  17. );