🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-14 09:01:10 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
ramailobhela.com
/
wp-content
/
themes
/
nighty-child
📍 /home/therahul/ramailobhela.com/wp-content/themes/nighty-child
🔄 Refresh
✏️
Editing: functions.php
Writable
<?php /** * Setup nighty Child Theme's textdomain. * * Declare textdomain for this child theme. * Translations can be filed in the /languages/ directory. */ function nighty_child_theme_setup() { load_child_theme_textdomain( 'nighty-child', get_stylesheet_directory() . '/languages' ); } add_action( 'after_setup_theme', 'nighty_child_theme_setup' ); add_action( 'wp_enqueue_scripts', 'nighty_enqueue_styles' ); function nighty_enqueue_styles() { $parenthandle = 'nighty-style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme. $theme = wp_get_theme(); wp_enqueue_style( $parenthandle, get_template_directory_uri() . '/style.css', array(), // if the parent theme code has a dependency, copy it to here $theme->parent()->get('Version') ); wp_enqueue_style( 'child-style', get_stylesheet_uri(), array( $parenthandle ), $theme->get('Version') // this only works if you have Version in the style header ); }
💾 Save Changes
❌ Cancel