12345678910111213141516171819 |
- <?php
- /**
- * A 404 page
- *
- * @package Blockbase
- */
- return array(
- 'title' => __( '404', 'blockbase' ),
- 'categories' => array( 'blockbase' ),
- 'inserter' => false,
- 'content' => '<!-- wp:heading {"textAlign":"center","level":1,"fontSize":"medium"} -->
- <h1 class="has-text-align-center has-medium-font-size" id="oops-that-page-can-t-be-found">' . esc_html__( "Oops! That page can’t be found.", "blockbase" ) . '</h1>
- <!-- /wp:heading -->
- <!-- wp:paragraph -->
- <p>' . esc_html__( "It looks like nothing was found at this location. Maybe try a search?", "blockbase" ) . '</p>
- <!-- /wp:paragraph -->',
- );
|