# learnpress/4.4.8/inc/admin/views/dashboard/plugin-status/html-results.php

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

- Page: https://pluginprobe.com/plugins/learnpress/4.4.8/code/inc/admin/views/dashboard/plugin-status/html-results.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.8/raw/inc/admin/views/dashboard/plugin-status/html-results.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/dashboard/plugin-status/html-results.php#L10-L20`.

```php
<?php
/**
 * Template for displaying LP information.
 */
defined( 'ABSPATH' ) || exit();

if ( ! isset( $plugin_data ) || is_wp_error( $plugin_data ) ) {
	return;
}
?>

<div class="rss-widget">
	<ul>
		<li>
			<a href="<?php echo esc_url_raw( $plugin_data->homepage ); ?>" class="rsswidget" target="_blank"><?php echo esc_html( $plugin_data->name ); ?></a>
		</li>
		<li>
			<?php
			if ( ! empty( $plugin_data->downloaded ) ) {
				printf( '<span><strong>%s</strong></span>: %s', esc_html__( 'Downloaded', 'learnpress' ), number_format( $plugin_data->downloaded ) );
			}
			?>
			<?php printf( '<span><strong>%s</strong></span>: %s', esc_html__( 'Active Installation', 'learnpress' ), number_format( $plugin_data->active_installs ) ); ?>
		</li>
	</ul>
</div>
<div class="rss-widget">
	<ul>
		<li>
			<div class="rssSummary">
				<?php echo esc_html( $plugin_data->short_description ); ?>
			</div>
		</li>
	</ul>
</div>
<p><?php printf( '<strong>%s</strong>: %s', esc_html__( 'Published', 'learnpress' ), date_i18n( get_option( 'date_format' ), strtotime( $plugin_data->added ) ) ); ?></p>
<p><?php printf( '<strong>%s</strong>: %s', esc_html__( 'Updated', 'learnpress' ), date_i18n( get_option( 'date_format' ), strtotime( $plugin_data->last_updated ) ) ); ?></p>
<p><?php printf( '<strong>%s</strong>: %s', esc_html__( 'Current Version', 'learnpress' ), $plugin_data->version ); ?></p>

```
