# learnpress/4.4.2/inc/Gutenberg/Templates/ArchiveCoursesBlockCategoryTemplate.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.4.2. 19 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.4.2/code/inc/Gutenberg/Templates/ArchiveCoursesBlockCategoryTemplate.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.2/raw/inc/Gutenberg/Templates/ArchiveCoursesBlockCategoryTemplate.php
- Modified: 2026-07-11T02:31:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.4.2/code/inc/Gutenberg/Templates/ArchiveCoursesBlockCategoryTemplate.php#L10-L20`.

```php
<?php
namespace LearnPress\Gutenberg\Templates;

/**
 * Class ArchiveCoursesBlockCategoryTemplate
 *
 * @since 4.2.8.2
 */
class ArchiveCoursesBlockCategoryTemplate extends AbstractBlockTemplate {
	public $slug                          = 'taxonomy-course_category';
	public $title                         = 'Courses by category';
	public $description                   = 'Displays courses filtered by a category';
	public $path_html_block_template_file = 'html/archive-courses-template-default.html';

	public function __construct() {
		parent::__construct();
	}
}

```
