WordPress 101 主题开发教程: 17 – 创建自定义归档页和404页面

WordPress 101 – Part 17: How to create a custom Archive and 404 page

视频学习参考:https://www.youtube.com/watch?v=5NdoDjukAVQ&list=PLriKzYyLb28nUFbe0Y9d-19uVkOnhYxFE&index=17

1.归档页archive.php

the_archive_title( '<h1 class="page-title">前', '后</h1>' );
the_archive_description( '<div class="taxonomy-description">', '</div>' );

2.404.php

<p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentyseventeen' ); ?></p>

<?php get_search_form(); ?>

<?php the_widget('WP_Widget_Recent_Posts'); ?>