hidden-404-content.php 1.2 KB

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * 404 content.
  4. */
  5. return array(
  6. 'title' => __( '404 content', 'remote' ),
  7. 'inserter' => false,
  8. 'content' => '<!-- wp:heading {"style":{"typography":{"fontSize":"min(max(42px, 5vw), 72px)","fontWeight":"100","lineHeight":"1"}},"className":"has-text-align-center"} -->
  9. <h2 class="has-text-align-center" style="font-size:min(max(42px, 5vw), 72px);font-weight:100;line-height:1">' . esc_html( _x( '404', 'Error code for a webpage that is not found.', 'remote' ) ) . '</h2>
  10. <!-- /wp:heading -->
  11. <!-- wp:paragraph {"align":"center"} -->
  12. <p class="has-text-align-center">' . esc_html__( 'This page could not be found. Maybe try a search?', 'remote' ) . '</p>
  13. <!-- /wp:paragraph -->
  14. <!-- wp:spacer {"height":"1em"} -->
  15. <div style="height:1em" aria-hidden="true" class="wp-block-spacer"></div>
  16. <!-- /wp:spacer -->
  17. <!-- wp:search {"label":"' . esc_html__( 'Search', 'remote' ) . '","showLabel":false,"width":100,"widthUnit":"%","buttonText":"' . esc_html__( 'Search', 'remote' ) . '","buttonUseIcon":true,"align":"center"} /-->
  18. <!-- wp:spacer {"height":"2em"} -->
  19. <div style="height:2em" aria-hidden="true" class="wp-block-spacer"></div>
  20. <!-- /wp:spacer -->',
  21. );