Hi folks,
i have got an issue right now.
I played with my functions.php file and broke it.
So as next step i took the original from the theme and replaced mine with it.
Still does not work.
I got this error: “Fatal error: Call to undefined function add_action() in /var/www/intertechno.at/wp-includes/functions.php on line 14”
I am using a child-theme.
url is intertechno.widder.at
thanks in advance and best regards
chris
EDIT:
previous functions.php content from backendview:
<?php
//
// Recommended way to include parent theme styles.
// (Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
//
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array(‘parent-style’)
);
}
//
// Your code goes below
//