Home / Admin / Mjellma Widget
Duplicate Snippet

Embed Snippet on Your Site

Mjellma Widget

Code Preview
php
<?php
function custom_dashboard_widget() {
    echo '
    <style>
        .dashboard-widget ul { list-style-type: none; padding: 0; }
        .dashboard-widget li { margin-bottom: 5px; }
    </style>
    
    <div class="dashboard-widget">
        <p>Për cdo pytje rreth webfaqes ju lutem na kontaktoni.</p>
        <ul>
            <li><strong>Website:</strong> <a href="https://mjellma.al" target="_blank">Mjellma.al</a></li>
            <li><strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></li>
            <li><strong>Phone Number:</strong> +383 49 844 249</li>
        </ul>
    </div>';
}
function add_custom_dashboard_widget() {
    wp_add_dashboard_widget(
        'custom_dashboard_widget',
        'Shërbimi i ndihmës.',
        'custom_dashboard_widget'
    );
}
add_action('wp_dashboard_setup', 'add_custom_dashboard_widget');

Comments

Add a Comment