<?php
/**
 * Plugin Name: Custom Meta Tag Plugin
 * Description: Adds meta tags to specific pages, posts, or site-wide in the head section. Useful for SEO and schema enhancements.
 * Version: 1.0
 * Author: Your Name
 */

// Hook into wp_head to output meta tags
add_action('wp_head', 'add_custom_meta_tags');

/**
 * Adds meta tags to specific page, post, or globally.
 */
function add_custom_meta_tags() {
    // COMMON META TAGS FOR ALL PAGES & POSTS
    echo '<meta name="viewport" content="width=device-width, initial-scale=1">' . "\n";
    echo '<meta name="author" content="RBS Photography">' . "\n";

    // PAGE-SPECIFIC META TAGS (Example: Page ID 4683)
    if (is_page(4683)) {
        echo '<meta name="googlebot" content="index">' . "\n";
        echo '<meta name="googlebot-news" content="index">' . "\n";
        echo '<meta name="application-name" content="rbsphotography.co">' . "\n";
        echo '<title>RBS Photography – Drone Capture</title>' . "\n";
        echo '<meta name="apple-mobile-web-app-title" content="RBS Photography – Drone Capture">' . "\n";
        echo '<meta name="robots" content="index, follow, max-image-preview:large">' . "\n";
        echo '<meta name="msnbot" content="index">' . "\n";
        echo '<meta name="keywords" content="drone camera, drone shoot, drone wedding shoot">' . "\n";
        echo '<meta name="description" content="Located in Chennai, our photography company brings over 12 years of expertise in delivering high-quality drone photos with a strong record of successful projects and excellent client satisfaction.">' . "\n";
        echo '<meta itemprop="url" content="https://rbsphotography.co/">' . "\n";
        echo '<meta itemprop="image" content="https://rbsphotography.co/wp-content/uploads/2025/04/DJI-Mini-4-Pro.webp">' . "\n";
        echo '<meta itemprop="thumbnailUrl" content="https://rbsphotography.co/wp-content/uploads/2025/04/DJI-Mini-4-Pro.webp">' . "\n";
        echo '<meta itemprop="height" content="630">' . "\n";
        echo '<meta itemprop="width" content="1200">' . "\n";
        echo '<meta property="og:type" content="website">' . "\n";
    }

    // POST-SPECIFIC META TAGS (Example: Post ID 1234)
    if (is_single(1234)) {
        echo '<meta name="description" content="Special behind-the-scenes of our wedding drone shoot in Chennai. Captured with precision and creativity.">' . "\n";
        echo '<meta name="keywords" content="wedding drone shoot, Chennai wedding photography">' . "\n";
        echo '<meta property="og:type" content="article">' . "\n";
    }
}