<?php if (! defined('ABSPATH')){exit;// Exit if accessed directly.}define('HELLO_ELEMENTOR_CHILD_VERSION','2.0.0');function hello_elementor_child_scripts_styles(){wp_enqueue_style('hello-elementor-child-style',get_stylesheet_directory_uri() . '/style.css',['hello-elementor-theme-style',],HELLO_ELEMENTOR_CHILD_VERSION)}add_action('wp_enqueue_scripts','hello_elementor_child_scripts_styles',20);// 添加 Remix Icon CDN function add_remix_icon_cdn(){wp_enqueue_style('remix-icon','https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.6.0/remixicon.min.css',array(),'4.6.0')}add_action('wp_enqueue_scripts','add_remix_icon_cdn');// 添加 Tailwind CSS CDN function enqueue_tailwind_css(){wp_enqueue_style('tailwind','https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio',array(),null)}add_action('wp_enqueue_scripts','enqueue_tailwind_css');// 让 Elementor HTML 模块支持短代码 add_filter('elementor/widget/render_content',function($content,$widget){if ($widget->get_name()==='html'){return do_shortcode($content)}return $content},10,2);