Make your WordPress site irresistible. Natural SEO attraction with: - robots.txt management - sitemap.xml generation - LLMs.txt support - Google integration (Analytics, Search Console, Tag Manager) - Schema.org structured data - Open Graph / Twitter Card meta tags - AMP support - Visual elements gallery - Built-in backup/restore module Includes build.sh and .distignore for WordPress-installable release ZIPs.
29 lines
662 B
PHP
29 lines
662 B
PHP
<?php
|
|
/**
|
|
* Head Footer Module for TigerStyle Heat
|
|
*/
|
|
|
|
// Prevent direct access
|
|
if (!defined('ABSPATH')) {
|
|
exit;
|
|
}
|
|
|
|
class TigerStyleSEO_Head_footer {
|
|
private static $instance = null;
|
|
|
|
public static function instance() {
|
|
if (is_null(self::$instance)) {
|
|
self::$instance = new self();
|
|
}
|
|
return self::$instance;
|
|
}
|
|
|
|
private function __construct() {
|
|
// Initialize hooks
|
|
}
|
|
|
|
public function render_admin_page() {
|
|
echo '<div class="seo-info-box"><h3>Head Footer Configuration</h3><p>Configure custom code injection for your site\'s header and footer areas.</p></div>';
|
|
}
|
|
}
|