PluginProbe
MainWP Dashboard: Self-hosted WordPress Management for Agencies / trunk
MainWP Dashboard: Self-hosted WordPress Management for Agencies vtrunk
6.2 6.1.8 6.1.7 6.1.6 6.1.5 6.1.4 6.1.3 6.1.2 6.1.1 6.1 6.0.12 6.0.11 4.6.0.1 5.0 5.0.1 5.0.2 5.0.3 5.0.3.1 5.0.3.2 5.1 5.1.1 5.2 5.2.1 5.2.2 5.3 All 153 releases
← All changes | widgets/widget-mainwp-get-started.php +7 -2 5.2trunk View file →
@@ -8,8 +8,13 @@
8 8 */
9 9
10 10 namespace MainWP\Dashboard;
11 11
12 +// Exit if accessed directly.
13 +if ( ! defined( 'ABSPATH' ) ) {
14 + exit;
15 +}
16 +
12 17 /**
13 18 * Class MainWP_Get_Started
14 19 *
15 20 * @package MainWP\Dashboard
@@ -50,9 +55,9 @@
50 55 */
51 56 public static function render_content() {
52 57 ?>
53 58 <div class="mainwp-widget-header">
54 - <h3 class="ui header handle-drag">
59 + <h2 class="ui header handle-drag">
55 60 <?php
56 61 /**
57 62 * Filter: mainwp_get_started_widget_title
58 63 *
@@ -62,9 +67,9 @@
62 67 */
63 68 echo esc_html( apply_filters( 'mainwp_get_started_widget_title', esc_html__( 'Get Started with MainWP', 'mainwp' ) ) );
64 69 ?>
65 70 <div class="sub header"><?php esc_html_e( 'Kickstart your MainWP experience with our simple checklist.', 'mainwp' ); ?></div>
66 - </h3>
71 + </h2>
67 72 </div>
68 73 <div class="mainwp-scrolly-overflow">
69 74 <?php
70 75 $extensions = MainWP_Extensions_Handler::get_extensions();