[Wordpress] Tworzenie child theme bez dostępu do hosta

Witam.

 

Prowadzę stronę na WP, nie mam danych do logowania na hosting a muszę edytować treść stopki. Potrzebuję więc zrobić child theme szablonu (twenty fourteen), próbowałem to zrobić za pomocą menadżera plików Wordpress, stworzyłem folder twentyfourteen-child, w nim pliki style.css oraz functions.php i w ich treść wkleiłem to co jest napisane na wiki, kolejno:

/*
 Theme Name: Twenty Fourteen Child
 Theme URI: http://example.com/twenty-fourteen-child/
 Description: Twenty Fourteen Child Theme
 Author: John Doe
 Author URI: http://example.com
 Template: twentyfourteen
 Version: 1.0.0
 Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain: twenty-fourteen-child
*/


/* =Theme customization starts here
-------------------------------------------------------------- */

oraz

<?php

add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_styles', PHP_INT_MAX);
function enqueue_child_theme_styles() {
    wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
    wp_enqueue_style( 'child-style', get_stylesheet_uri(), array('parent-style') );
}

Niestety nie działa, gdy daję podgląd motywu to jest cała biała strona.

 

Próbowałem też metody z @import, ale wtedy wyświetlana jest treść strony bez żadnych styli (na białym tle).