
<center><h2><strong>Ubuntu</strong></h2>
­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
/**
 * Theme functions and definitions
 *
 * @package HelloElementorChild
 */

/**
 * Load child theme css and optional scripts
 *
 * @return void
 */
function hello_elementor_child_enqueue_scripts() {
  $my_css_ver = date("ymd-Gis", filemtime( plugin_dir_path( __FILE__ ) . '/assets/css/custom.css' ));
  $my_js_ver = date("ymd-Gis", filemtime( plugin_dir_path( __FILE__ ) . '/assets/js/scripts.js' ));
	wp_enqueue_style(
		'hello-elementor-child-style',
		get_stylesheet_directory_uri() . '/style.css',
		[
			'hello-elementor-theme-style',
		],
		'1.0.0'
	);
	wp_enqueue_style( 'custom-style', get_stylesheet_directory_uri() . '/assets/css/custom.css', false,   $my_css_ver );
	wp_enqueue_script( 'scripts', get_stylesheet_directory_uri() . '/assets/js/scripts.js', false,   $my_js_ver );
}
add_action( 'wp_enqueue_scripts', 'hello_elementor_child_enqueue_scripts' );

/*
 * Enable shortcodes in menu
*/

add_filter('wp_nav_menu_items', 'do_shortcode');

/*
 * Ajout du logo
*/
add_theme_support( 'custom-logo' );

/**
 * Enable ACF 5 early access
 * Requires at least version ACF 4.4.12 to work
 */
define('ACF_EARLY_ACCESS', '5');