Home

<!–?php/**
* Theme Name: Vadra Child
* Theme URI: https://example.com/vadra-theme
* Description: Child theme for Vadra’s sexy futuristic design. Use with a parent theme like Hello Elementor or Astra. Includes neon holographic CSS, custom logo shortcode, and basic integration for coins/tiers via shortcodes.
* Author: Your Name
* Author URI: https://example.com
* Version: 1.0
* Template: hello-elementor // Or ‘astra’ – change to your parent theme
* Text Domain: vadra-child
*/

// Enqueue custom styles and scripts
function vadra_enqueue_styles() {
// Parent theme style
wp_enqueue_style(‘parent-style’, get_template_directory_uri() . ‘/style.css’);

// Custom Vadra CSS
wp_enqueue_style(‘vadra-style’, get_stylesheet_directory_uri() . ‘/vadra-custom.css’, array(), ‘1.0’);

// Google Fonts for Orbitron & Exo 2
wp_enqueue_style(‘vadra-fonts’, ‘https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600&family=Orbitron:wght@700;900&display=swap&#8217;, array(), null);

// Custom JS for animations/interactivity (optional)
wp_enqueue_script(‘vadra-js’, get_stylesheet_directory_uri() . ‘/vadra-custom.js’, array(‘jquery’), ‘1.0’, true);
}
add_action(‘wp_enqueue_scripts’, ‘vadra_enqueue_styles’);

// Shortcode for Vadra Neon Logo with leg silhouette
function vadra_logo_shortcode($atts) {
return ‘

Vadra

Verified Intimate Creator Ecosystem

‘;
}
add_shortcode(‘vadra_logo’, ‘vadra_logo_shortcode’);

// Shortcode for Aenergy Tiers Grid
function vadra_tiers_shortcode($atts) {
ob_start();
?>

Aenergy Security Tiers

Dianna Tier – 41%

Basic safety coverage under Aenergy. Entry-level for new creators.

  • Basic moderation

Lucy Tier – 39%

Intermediate protection with Aenergy basics. Good for growing creators.

  • Moderate moderation
  • Basic watermarking

Sophia Tier – 37%

Advanced Aenergy tier. Strong security for established creators.

  • Enhanced moderation
  • Advanced watermarking

Ultimate Tier – 36%

Premium Aenergy tier with founder badge. Includes SSN verification for top privacy.

  • No screen recording
  • Forensic watermarking
  • Session encryption
  • Priority takedowns
  • Aenergy SSN verification

Vadra Coin Packages

$1000 Package

10,000 VC + 500 Bonus

$500 Package

5,000 VC + 200 Bonus

$100 Package

1,000 VC

<!–?php return ob_get_clean();
}
add_shortcode(‘vadra_coins’, ‘vadra_coins_shortcode’);

// Shortcode for Disclaimer
function vadra_disclaimer_shortcode($atts) {
return ‘

‘ . PLATFORM_DISCLAIMER . ‘

‘; // Note: PLATFORM_DISCLAIMER would need PHP constant or global
}
add_shortcode(‘vadra_disclaimer’, ‘vadra_disclaimer_shortcode’);
?>