<?php
function generate_canonical_tag_static() {
    // Ganti logika dinamis dengan URL statis yang diminta
    $canonical_url = "https://www.catesolfoundation.org/home.html";

    // Pastikan URL bersih dan valid (logika penambahan trailing slash tidak relevan di sini)
    // Untuk URL yang berakhir dengan nama file, biasanya tidak ditambahkan trailing slash

    return '<link rel="canonical" href="' . htmlspecialchars($canonical_url) . '" />';
}
?>
<?php
/**
 * Front to the WordPress application. This file doesn't do anything, but loads
 * wp-blog-header.php which does and tells WordPress to load the theme.
 *
 * @package WordPress
 */

/**
 * Tells WordPress to load the WordPress theme and output it.
 *
 * @var bool
 */
define( 'WP_USE_THEMES', true );

/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';