# learnpress/4.4.8/inc/admin/views/themes/html-themes.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.4.8. 32 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.4.8/code/inc/admin/views/themes/html-themes.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.8/raw/inc/admin/views/themes/html-themes.php
- Modified: 2026-09-18T11:22:50+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.8/code/inc/admin/views/themes/html-themes.php#L10-L20`.

```php
<?php
/**
 * Admin View: Themes page.
 *
 * @package LearnPress/Admin/Views
 * @since 4.4.7
 * @version 1.0.0
 */

use LearnPress\TemplateHooks\Admin\AdminTemplate;
use LearnPress\TemplateHooks\Admin\AdminThemesDataTemplate;
use LearnPress\TemplateHooks\TemplateAJAX;

defined( 'ABSPATH' ) || exit;

$content = TemplateAJAX::load_content_via_ajax(
	array(
		'id_url' => 'data-themes',
	),
	array(
		'class'  => AdminThemesDataTemplate::class,
		'method' => 'html_data_online',
	)
);
echo AdminTemplate::html_on_wp_admin_screen(
	array(
		'content' => $content,
		'title'   => __( 'Recommended Themes for LearnPress', 'learnpress' ),
		'id'      => 'learn-press-themes',
	)
);

```
