wp_dashboard_events_news()

Renders the ClassicPress News dashboard widget.


Source

File: wp-admin/includes/dashboard.php

function wp_dashboard_events_news() {
	?>
	<div class="classicpress-news-inline-notice">
		<?php printf(
			/* translators: link to ClassicPress blog */
			__( 'You can always find the latest ClassicPress news on our <a href="%s">official&nbsp;blog</a>.' ),
			'https://www.classicpress.net/blog/'
		); ?>
	</div>
	<div class="wordpress-news hide-if-no-js">
		<?php wp_dashboard_primary(); ?>
	</div>
	<?php
}


Changelog

Changelog
Version Description
1.0.0 Events section removed.
WP-4.8.0 Introduced.