Archives.php chỉ hiển thị nội dung của loại 'bài đăng', nhưng bạn có thể thay đổi nó để bao gồm các loại bài đăng tùy chỉnh. Thêm bộ lọc này vào tệp functions.php của bạn:
function namespace_add_custom_types( $query ) ( if( is_category() || is_tag() && empty( $query->query_vars('suppress_filters') ) ) ( $query->set( 'post_type', array( 'post', 'nav_menu_item', 'your-custom-post-type-here' )); return $query; ) ) add_filter( 'pre_get_posts', 'namespace_add_custom_types' );