| | 1338 | /** |
| | 1339 | * Renders the Learn dashboard widget. |
| | 1340 | * |
| | 1341 | * @since x.x.x |
| | 1342 | */ |
| | 1343 | function wp_dashboard_learn_wordpress() { |
| | 1344 | echo __( 'Latest courses from Learn WordPress' ); |
| | 1345 | ?> |
| | 1346 | |
| | 1347 | <?php |
| | 1348 | wp_widget_rss_output( |
| | 1349 | 'https://learn.wordpress.org/courses/feed/', |
| | 1350 | array( |
| | 1351 | 'show_summary' => 0, |
| | 1352 | 'items' => 5, |
| | 1353 | ) |
| | 1354 | ); |
| | 1355 | ?> |
| | 1356 | |
| | 1357 | <p class="community-events-footer"> |
| | 1358 | <?php |
| | 1359 | printf( |
| | 1360 | '<a href="%1$s" target="_blank">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>', |
| | 1361 | 'https://learn.wordpress.org/tutorials/', |
| | 1362 | __( 'Tutorials' ), |
| | 1363 | /* translators: Hidden accessibility text. */ |
| | 1364 | __( '(opens in a new tab)' ) |
| | 1365 | ); |
| | 1366 | ?> |
| | 1367 | |
| | 1368 | | |
| | 1369 | |
| | 1370 | <?php |
| | 1371 | printf( |
| | 1372 | '<a href="%1$s" target="_blank">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>', |
| | 1373 | 'https://learn.wordpress.org/online-workshops/', |
| | 1374 | __( 'Workshops' ), |
| | 1375 | /* translators: Hidden accessibility text. */ |
| | 1376 | __( '(opens in a new tab)' ) |
| | 1377 | ); |
| | 1378 | ?> |
| | 1379 | |
| | 1380 | | |
| | 1381 | |
| | 1382 | <?php |
| | 1383 | printf( |
| | 1384 | '<a href="%1$s" target="_blank">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>', |
| | 1385 | 'https://learn.wordpress.org/courses/', |
| | 1386 | __( 'Courses' ), |
| | 1387 | /* translators: Hidden accessibility text. */ |
| | 1388 | __( '(opens in a new tab)' ) |
| | 1389 | ); |
| | 1390 | ?> |
| | 1391 | |
| | 1392 | | |
| | 1393 | |
| | 1394 | <?php |
| | 1395 | printf( |
| | 1396 | '<a href="%1$s" target="_blank">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>', |
| | 1397 | 'https://learn.wordpress.org/lesson-plans/', |
| | 1398 | __( 'Lesson Plans' ), |
| | 1399 | /* translators: Hidden accessibility text. */ |
| | 1400 | __( '(opens in a new tab)' ) |
| | 1401 | ); |
| | 1402 | ?> |
| | 1403 | </p> |
| | 1404 | |
| | 1405 | <?php |
| | 1406 | } |
| | 1407 | |