From 022ac90bef5780b3fbae6456c1db5047a65804a2 Mon Sep 17 00:00:00 2001 From: shail-mehta Date: Sat, 25 Jan 2025 19:31:24 +0530 Subject: [PATCH] Used https in wordpress.org url --- docs/reference-guides/slotfills/main-dashboard-button.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference-guides/slotfills/main-dashboard-button.md b/docs/reference-guides/slotfills/main-dashboard-button.md index b55ed50648db15..593c5c57ca2973 100644 --- a/docs/reference-guides/slotfills/main-dashboard-button.md +++ b/docs/reference-guides/slotfills/main-dashboard-button.md @@ -33,7 +33,7 @@ registerPlugin( 'main-dashboard-button-test', { ### Change the icon and link -This example will change the icon in the header to indicate an external link that will take the user to http://wordpress.org when clicked. +This example will change the icon in the header to indicate an external link that will take the user to https://wordpress.org when clicked. ```js import { registerPlugin } from '@wordpress/plugins'; @@ -45,7 +45,7 @@ import { external } from '@wordpress/icons'; const MainDashboardButtonIconTest = () => ( - + ); @@ -54,4 +54,4 @@ registerPlugin( 'main-dashboard-button-icon-test', { } ); ``` -![The edit post screen in fullscreen mode displaying an external link icon instead of the default W](https://developer.wordpress.org/files/2024/08/main-dashboard-button-external-link-example.png 'Change the icon in the header to indicate an external link that will take the user to http://wordpress.org when clicked') +![The edit post screen in fullscreen mode displaying an external link icon instead of the default W](https://developer.wordpress.org/files/2024/08/main-dashboard-button-external-link-example.png 'Change the icon in the header to indicate an external link that will take the user to https://wordpress.org when clicked')