Company Details WordPress Dashboard

Add this to the Code Snippets Plugin to show Company Details 🙂

/**
 * Custom Dashboard Widget for WordPress Admin
 * 
 * Instructions:
 * 1. Replace the placeholder values in the variables below with your company information.
 * 2. Add this code to your theme's functions.php file or a custom plugin.
 */

// Customize these variables with your company's information
$company_name = 'Your Company Name'; // Replace with your company name
$company_url = 'https://www.yourcompanywebsite.com'; // Replace with your company website URL
$company_email = 'contact@yourcompanywebsite.com'; // Replace with your company email
$company_phone = '+1 234 567 8900'; // Replace with your company phone number
$logo_url = 'https://website.websquadron.co.uk/wp-content/uploads/BlackText-Logo.webp'; // Replace with the direct URL to your logo image
$background_color = '#FFFFFF'; // Replace with hex color code for background
$text_color = '#222222'; // Replace with hex color code for text
$link_color = '#FF0050'; // Replace with hex color code for links

add_action('wp_dashboard_setup', function() use ($company_name, $company_url, $company_email, $company_phone, $logo_url, $background_color, $text_color, $link_color) {
    wp_add_dashboard_widget(
        'custom_dashboard_widget',
        $company_name,
        function() use ($company_name, $company_url, $company_email, $company_phone, $logo_url, $background_color, $text_color, $link_color) {
            ?>
            <div style="padding: 20px; text-align: center; background-color: <?php echo $background_color; ?>; color: <?php echo $text_color; ?>; border: 1px solid #ddd; box-shadow: 0 1px 4px rgba(0,0,0,0.1);">
                <img src="<?php echo $logo_url; ?>" alt="<?php echo $company_name; ?> Logo" style="max-width: 100%; height: auto; margin-bottom: 20px;">
                <h2 style="font-size: 24px; margin-bottom: 15px;"><?php echo $company_name; ?></h2>
                <p style="font-size: 16px; margin-bottom: 10px;"><a href="<?php echo $company_url; ?>" target="_blank" style="text-decoration: none; color: <?php echo $link_color; ?>;"><?php echo $company_url; ?></a></p>
                <p style="font-size: 16px; margin-bottom: 10px;">Email: <a href="mailto:<?php echo $company_email; ?>" style="text-decoration: none; color: <?php echo $link_color; ?>;"><?php echo $company_email; ?></a></p>
                <p style="font-size: 16px;">Telephone: <a href="tel:<?php echo $company_phone; ?>" style="text-decoration: none; color: <?php echo $link_color; ?>;"><?php echo $company_phone; ?></a></p>
            </div>
            <?php
        }
    );
});

Please Share

Help us to create Amazing Content!