I think I made a huge mistake by adding it in the theme.
I receive this message:
Parse error: syntax error, unexpected end of file in /home/seminaires.01063/public_html/wp-content/themes/solon/functions.php on line 241
What can I do to make my Solon template working again?
Here is the code that I guess is at line 241:
function solon_html5shiv() {
echo ‘<!–[if lt IE 9]>’ . “\n”;
echo ‘<script src=”‘ . esc_url( get_template_directory_uri() . ‘/js/html5shiv.js’ ) . ‘”></script>’ . “\n”;
echo ‘<![endif]–>’ . “\n”;
}
add_action( ‘wp_head’, ‘solon_html5shiv’ );
/**
* Custom template tags for this theme.
*/
require get_template_directory() . ‘/inc/template-tags.php’;
/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . ‘/inc/extras.php’;
/**
* Customizer additions.
*/
require get_template_directory() . ‘/inc/customizer.php’;
/**
* Load Jetpack compatibility file.