wp_dashboard_events_news()
Renders 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 blog</a>.' ),
'https://www.classicpress.net/blog/'
); ?>
</div>
<div class="wordpress-news hide-if-no-js">
<?php wp_dashboard_primary(); ?>
</div>
<?php
}
Changelog
Version | Description |
---|---|
4.8.0 | |
1.0.0 | Introduced. Events section removed |