PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 18.7
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v18.7
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
wordpress-seo / admin / views / tabs / dashboard / dashboard.php

dashboard.php in Yoast SEO – Advanced SEO with real-time guidance and built-in AI 18.7, at admin/views/tabs/dashboard/dashboard.php

45 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * WPSEO plugin file.
4 *
5 * @package WPSEO\Admin
6 */
7
8 /**
9 * Notifications template variables.
10 *
11 * @noinspection PhpUnusedLocalVariableInspection
12 *
13 * @var array
14 */
15 $notifications_data = Yoast_Notifications::get_template_variables();
16
17 $wpseo_contributors_phrase = sprintf(
18 /* translators: %1$s expands to Yoast SEO */
19 __( 'See who contributed to %1$s.', 'wordpress-seo' ),
20 'Yoast SEO'
21 );
22
23 ?>
24
25 <div class="tab-block">
26 <div class="yoast-notifications">
27
28 <div class="yoast-container yoast-container__error">
29 <?php require WPSEO_PATH . 'admin/views/partial-notifications-errors.php'; ?>
30 </div>
31
32 <div class="yoast-container yoast-container__warning">
33 <?php require WPSEO_PATH . 'admin/views/partial-notifications-warnings.php'; ?>
34 </div>
35
36 </div>
37 </div>
38
39 <div class="tab-block">
40 <h2><?php esc_html_e( 'Credits', 'wordpress-seo' ); ?></h2>
41 <p>
42 <a href="<?php WPSEO_Shortlinker::show( 'https://yoa.st/yoast-seo-credits' ); ?>"><?php echo esc_html( $wpseo_contributors_phrase ); ?></a>
43 </p>
44 </div>
45