在WordPress中设置404页面,可以按照以下步骤:
<?php get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<section class="error-404 not-found">
<header class="page-header">
<h1 class="page-title"><?php esc_html_e( 'Oops! That page can’t be found.', 'text-domain' ); ?></h1>
</header>
<div class="page-content">
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try a search?', 'text-domain' ); ?></p>
<?php get_search_form(); ?>
</div>
</section>
</main>
</div>
<?php get_footer(); ?>
以上示例代码中,会显示一条错误信息和一个搜索表单,让用户可以搜索其它内容。你可以根据需要进行修改和自定义404页面的内容样式。