Diff: STRATO-apps/wordpress_03/app/wp-content/themes/blocksy-child/functions.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
1
+
<?php
2
+
3
+
if (! defined('WP_DEBUG')) {
4
+
die( 'Direct access forbidden.' );
5
+
}
6
+
7
+
add_action( 'wp_enqueue_scripts', function () {
8
+
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
9
+
});
10
+