<?php /** * Hello Elementor Child Theme functions and definitions */ if ( ! defined( 'ABSPATH' ) ) exit; // 1. Enqueue Style add_action( 'wp_enqueue_scripts', function() { // Parent style wp_enqueue_style( 'hello-elementor-parent-style', get_template_directory_uri() . '/style.css' ); // Child style wp_enqueue_style( 'hello-elementor-child-style', get_stylesheet_uri(), array( 'hello-elementor-parent-style' ), '1.0.0' ); }, 20 ); // 2. Hapus Header dan Footer Default Hello Elementor add_action( 'after_setup_theme', function() { remove_action( 'hello_elementor_header', 'hello_elementor_header_template' ); remove_action( 'hello_elementor_footer', 'hello_elementor_footer_template' ); }, 20 ); // 3. Matikan Admin Bar di Halaman Depan untuk estetika pembaca add_filter('show_admin_bar', '__return_false'); // 4. Pastikan kita bisa menggunakan Template Custom di Page // (Biasanya otomatis terbaca oleh WordPress selama komentar "Template Name" ada)
1