Home / Admin / Untitled Snippet
Duplicate Snippet

Embed Snippet on Your Site

Untitled Snippet

Code Preview
php
<?php
function youtube_dashboard() {
    $api_key = "AIzaSyBzzf22Vs5sMf1eoCuhN3-0Qtnj0EKu7Bk";
    $channel_id = "102319916649-hmjdaecid7f96ql384nd80ie8mn13fjj.apps.googleusercontent.com"; // ganti channel kamu
    $url = "https://www.googleapis.com/youtube/v3/channels?part=snippet,statistics&id=$channel_id&key=$api_key";
    $response = wp_remote_get($url);
    if (is_wp_error($response)) {
        return "Error ambil data";
    }
    $body = json_decode(wp_remote_retrieve_body($response), true);
    $data = $body['items'][0];
    $title = $data['snippet']['title'];
    $subs = $data['statistics']['subscriberCount'];
    $views = $data['statistics']['viewCount'];
    $videos = $data['statistics']['videoCount'];
    return "
    <div style='padding:20px; background:#111; color:#fff; border-radius:10px'>
        <h2>$title</h2>
        <p>Subscribers: $subs</p>
        <p>Views: $views</p>
        <p>Videos: $videos</p>
    </div>
    ";
}
add_shortcode('youtube_dashboard', 'youtube_dashboard');

Comments

Add a Comment