Created
March 19, 2023 08:33
-
-
Save Lego2012/6ec851fc1cbc328c605e4761211eaaba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function add_support_details_widget() { | |
wp_add_dashboard_widget( | |
'support_details_widget', | |
'Support Details', | |
'support_details_widget_content' | |
); | |
} | |
add_action( 'wp_dashboard_setup', 'add_support_details_widget' ); | |
function support_details_widget_content() { | |
$name = 'Imran Siddiq'; | |
$email = '[email protected]'; | |
$web_address = 'https://websquadron.co.uk'; | |
echo '<div>'; | |
echo '<p>Web Designer: ' . esc_html( $name ) . '</p>'; | |
echo '<p>Email: <a href="mailto:' . esc_attr( $email ) . '">' . esc_html( $email ) . '</a></p>'; | |
echo '<p>Website: <a href="' . esc_url( $web_address ) . '" target="_blank">' . esc_html( $web_address ) . '</a></p>'; | |
echo '</div>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment