/** * Theme functions and definitions * * @package HelloElementor */ use Elementor\WPNotificationsPackage\V110\Notifications as ThemeNotifications; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } define( 'HELLO_ELEMENTOR_VERSION', '3.3.0' ); if ( ! isset( $content_width ) ) { $content_width = 800; // Pixels. } if ( ! function_exists( 'hello_elementor_setup' ) ) { /** * Set up theme support. * * @return void */ function hello_elementor_setup() { if ( is_admin() ) { hello_maybe_update_theme_version_in_db(); } if ( apply_filters( 'hello_elementor_register_menus', true ) ) { register_nav_menus( [ 'menu-1' => esc_html__( 'Header', 'hello-elementor' ) ] ); register_nav_menus( [ 'menu-2' => esc_html__( 'Footer', 'hello-elementor' ) ] ); } if ( apply_filters( 'hello_elementor_post_type_support', true ) ) { add_post_type_support( 'page', 'excerpt' ); } if ( apply_filters( 'hello_elementor_add_theme_support', true ) ) { add_theme_support( 'post-thumbnails' ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'title-tag' ); add_theme_support( 'html5', [ 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'script', 'style', ] ); add_theme_support( 'custom-logo', [ 'height' => 100, 'width' => 350, 'flex-height' => true, 'flex-width' => true, ] ); add_theme_support( 'align-wide' ); add_theme_support( 'responsive-embeds' ); /* * Editor Styles */ add_theme_support( 'editor-styles' ); add_editor_style( 'editor-styles.css' ); /* * WooCommerce. */ if ( apply_filters( 'hello_elementor_add_woocommerce_support', true ) ) { // WooCommerce in general. add_theme_support( 'woocommerce' ); // Enabling WooCommerce product gallery features (are off by default since WC 3.0.0). // zoom. add_theme_support( 'wc-product-gallery-zoom' ); // lightbox. add_theme_support( 'wc-product-gallery-lightbox' ); // swipe. add_theme_support( 'wc-product-gallery-slider' ); } } } } add_action( 'after_setup_theme', 'hello_elementor_setup' ); function hello_maybe_update_theme_version_in_db() { $theme_version_option_name = 'hello_theme_version'; // The theme version saved in the database. $hello_theme_db_version = get_option( $theme_version_option_name ); // If the 'hello_theme_version' option does not exist in the DB, or the version needs to be updated, do the update. if ( ! $hello_theme_db_version || version_compare( $hello_theme_db_version, HELLO_ELEMENTOR_VERSION, '<' ) ) { update_option( $theme_version_option_name, HELLO_ELEMENTOR_VERSION ); } } if ( ! function_exists( 'hello_elementor_display_header_footer' ) ) { /** * Check whether to display header footer. * * @return bool */ function hello_elementor_display_header_footer() { $hello_elementor_header_footer = true; return apply_filters( 'hello_elementor_header_footer', $hello_elementor_header_footer ); } } if ( ! function_exists( 'hello_elementor_scripts_styles' ) ) { /** * Theme Scripts & Styles. * * @return void */ function hello_elementor_scripts_styles() { $min_suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; if ( apply_filters( 'hello_elementor_enqueue_style', true ) ) { wp_enqueue_style( 'hello-elementor', get_template_directory_uri() . '/style' . $min_suffix . '.css', [], HELLO_ELEMENTOR_VERSION ); } if ( apply_filters( 'hello_elementor_enqueue_theme_style', true ) ) { wp_enqueue_style( 'hello-elementor-theme-style', get_template_directory_uri() . '/theme' . $min_suffix . '.css', [], HELLO_ELEMENTOR_VERSION ); } if ( hello_elementor_display_header_footer() ) { wp_enqueue_style( 'hello-elementor-header-footer', get_template_directory_uri() . '/header-footer' . $min_suffix . '.css', [], HELLO_ELEMENTOR_VERSION ); } } } add_action( 'wp_enqueue_scripts', 'hello_elementor_scripts_styles' ); if ( ! function_exists( 'hello_elementor_register_elementor_locations' ) ) { /** * Register Elementor Locations. * * @param ElementorPro\Modules\ThemeBuilder\Classes\Locations_Manager $elementor_theme_manager theme manager. * * @return void */ function hello_elementor_register_elementor_locations( $elementor_theme_manager ) { if ( apply_filters( 'hello_elementor_register_elementor_locations', true ) ) { $elementor_theme_manager->register_all_core_location(); } } } add_action( 'elementor/theme/register_locations', 'hello_elementor_register_elementor_locations' ); if ( ! function_exists( 'hello_elementor_content_width' ) ) { /** * Set default content width. * * @return void */ function hello_elementor_content_width() { $GLOBALS['content_width'] = apply_filters( 'hello_elementor_content_width', 800 ); } } add_action( 'after_setup_theme', 'hello_elementor_content_width', 0 ); if ( ! function_exists( 'hello_elementor_add_description_meta_tag' ) ) { /** * Add description meta tag with excerpt text. * * @return void */ function hello_elementor_add_description_meta_tag() { if ( ! apply_filters( 'hello_elementor_description_meta_tag', true ) ) { return; } if ( ! is_singular() ) { return; } $post = get_queried_object(); if ( empty( $post->post_excerpt ) ) { return; } echo '' . "\n"; } } add_action( 'wp_head', 'hello_elementor_add_description_meta_tag' ); // Admin notice if ( is_admin() ) { require get_template_directory() . '/includes/admin-functions.php'; } // Settings page require get_template_directory() . '/includes/settings-functions.php'; // Header & footer styling option, inside Elementor require get_template_directory() . '/includes/elementor-functions.php'; if ( ! function_exists( 'hello_elementor_customizer' ) ) { // Customizer controls function hello_elementor_customizer() { if ( ! is_customize_preview() ) { return; } if ( ! hello_elementor_display_header_footer() ) { return; } require get_template_directory() . '/includes/customizer-functions.php'; } } add_action( 'init', 'hello_elementor_customizer' ); if ( ! function_exists( 'hello_elementor_check_hide_title' ) ) { /** * Check whether to display the page title. * * @param bool $val default value. * * @return bool */ function hello_elementor_check_hide_title( $val ) { if ( defined( 'ELEMENTOR_VERSION' ) ) { $current_doc = Elementor\Plugin::instance()->documents->get( get_the_ID() ); if ( $current_doc && 'yes' === $current_doc->get_settings( 'hide_title' ) ) { $val = false; } } return $val; } } add_filter( 'hello_elementor_page_title', 'hello_elementor_check_hide_title' ); /** * BC: * In v2.7.0 the theme removed the `hello_elementor_body_open()` from `header.php` replacing it with `wp_body_open()`. * The following code prevents fatal errors in child themes that still use this function. */ if ( ! function_exists( 'hello_elementor_body_open' ) ) { function hello_elementor_body_open() { wp_body_open(); } } function hello_elementor_get_theme_notifications(): ThemeNotifications { static $notifications = null; if ( null === $notifications ) { require get_template_directory() . '/vendor/autoload.php'; $notifications = new ThemeNotifications( 'hello-elementor', HELLO_ELEMENTOR_VERSION, 'theme' ); } return $notifications; } hello_elementor_get_theme_notifications(); {"id":554,"date":"2017-02-13T10:03:14","date_gmt":"2017-02-13T10:03:14","guid":{"rendered":"http:\/\/optima.la-studioweb.com\/?page_id=554"},"modified":"2023-01-28T15:59:00","modified_gmt":"2023-01-28T15:59:00","slug":"home-03-creative-agency","status":"publish","type":"page","link":"https:\/\/www.agence-itb.com\/","title":{"rendered":"Home 03 – Creative Agency"},"content":{"rendered":"
[vc_row][vc_column][rev_slider_vc alias=\u00a0\u00bbhome-03″][\/vc_column][\/vc_row][vc_row][vc_column][la_heading tag=\u00a0\u00bbh3″ spacer=\u00a0\u00bbline\u00a0\u00bb spacer_position=\u00a0\u00bbmiddle\u00a0\u00bb line_height=\u00a0\u00bb2″ title=\u00a0\u00bbITB-Tours con\u00e7oit pour vous tous les voyages\u00a0\u00bb title_class=\u00a0\u00bbh3″ subtitle_fz=\u00a0\u00bblg:16px;\u00a0\u00bb subtitle_lh=\u00a0\u00bblg:30px;\u00a0\u00bb line_width=\u00a0\u00bblg:80px;\u00a0\u00bb line_color=\u00a0\u00bb#9c84f4″ line_class=\u00a0\u00bbmargin-top-25 margin-bottom-20″][\/la_heading][la_divider height=\u00a0\u00bblg:65px;sm:30px;\u00a0\u00bb][vc_images_carousel images=\u00a0\u00bb3072,3073,3074,3075,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092″ img_size=\u00a0\u00bb10000″ onclick=\u00a0\u00bblink_no\u00a0\u00bb speed=\u00a0\u00bb1000″ slides_per_view=\u00a0\u00bb4″ autoplay=\u00a0\u00bbyes\u00a0\u00bb hide_pagination_control=\u00a0\u00bbyes\u00a0\u00bb wrap=\u00a0\u00bbyes\u00a0\u00bb css=\u00a0\u00bb.vc_custom_1673994859681{background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\u00a0\u00bb][\/vc_column][\/vc_row][vc_row][vc_column width=\u00a0\u00bb1\/3″][vc_single_image image=\u00a0\u00bb3117″ img_size=\u00a0\u00bb1000×500″ alignment=\u00a0\u00bbcenter\u00a0\u00bb style=\u00a0\u00bbvc_box_shadow_circle_2″][vc_wp_text]<\/p>\n
En cas de voyage <\/strong>n’h\u00e9siter pas \u00e0 nous contacter, pour b\u00e9n\u00e9ficier du prix indiqu\u00e9 par la compagnie a\u00e9rienne sans frais supplementaire.\u00a0<\/span><\/p>\n [\/vc_wp_text][\/vc_column][vc_column width=\u00a0\u00bb1\/3″][vc_single_image image=\u00a0\u00bb3114″ img_size=\u00a0\u00bb1000×500″ alignment=\u00a0\u00bbcenter\u00a0\u00bb style=\u00a0\u00bbvc_box_shadow_circle_2″][vc_wp_text]<\/p>\n Avec ITB Tours,<\/strong> vous pouvez choisir\u00a0 votre ville de d\u00e9part, votre destination qui vous convient avec un prix abordable.\u00a0<\/span><\/p>\n [\/vc_wp_text][\/vc_column][vc_column width=\u00a0\u00bb1\/3″][vc_single_image image=\u00a0\u00bb3112″ img_size=\u00a0\u00bb1000×500″ alignment=\u00a0\u00bbcenter\u00a0\u00bb style=\u00a0\u00bbvc_box_shadow_circle_2″][vc_wp_text]<\/p>\n Trouvez rapidement votre vol selon vos crit\u00e8res pr\u00e9f\u00e9r\u00e9s : dur\u00e9e du vol, escales, cr\u00e9neau horaire et plus encore ! Pr\u00e9pare-vous \u00e0 voyager !<\/strong><\/span><\/p>\n [\/vc_wp_text][\/vc_column][\/vc_row][vc_row][vc_column width=\u00a0\u00bb1\/3″][vc_single_image image=\u00a0\u00bb3099″ img_size=\u00a0\u00bb1000×500″ alignment=\u00a0\u00bbcenter\u00a0\u00bb style=\u00a0\u00bbvc_box_shadow_circle_2″][vc_wp_text]<\/p>\n Agence ITB Tours\u00a0<\/strong> vous offre la possibilit\u00e9 de faire differents types des voyages, pour explorer le monde, faire des decouvertes, et\u00a0 s\u2019aventurer.<\/span><\/p>\n [\/vc_wp_text][\/vc_column][vc_column width=\u00a0\u00bb1\/3″][vc_single_image image=\u00a0\u00bb3129″ img_size=\u00a0\u00bb1000×500″ alignment=\u00a0\u00bbcenter\u00a0\u00bb style=\u00a0\u00bbvc_box_shadow_circle_2″][vc_wp_text]<\/p>\n Interagir avec la population locale<\/strong>, c’est effectuer un voyage de croisi\u00e8re\u00a0 avec la possibilit\u00e9 de profiter de nombreux loisirs.<\/span><\/p>\n [\/vc_wp_text][\/vc_column][vc_column width=\u00a0\u00bb1\/3″][vc_single_image image=\u00a0\u00bb3137″ img_size=\u00a0\u00bb1000×500″ alignment=\u00a0\u00bbcenter\u00a0\u00bb style=\u00a0\u00bbvc_box_shadow_circle_2″][vc_wp_text]<\/p>\n Soyez les plus rapides pour profiter de nos meilleures offres. [\/vc_wp_text][\/vc_column][\/vc_row][vc_row full_height=\u00a0\u00bbyes\u00a0\u00bb equal_height=\u00a0\u00bbyes\u00a0\u00bb][vc_column width=\u00a0\u00bb5\/6″][vc_single_image image=\u00a0\u00bb3140″ img_size=\u00a0\u00bb1000×500″ alignment=\u00a0\u00bbcenter\u00a0\u00bb style=\u00a0\u00bbvc_box_shadow_3d\u00a0\u00bb][\/vc_column][vc_column width=\u00a0\u00bb1\/6″][\/vc_column][\/vc_row][vc_row][vc_column][la_divider height=\u00a0\u00bblg:65px;sm:30px;\u00a0\u00bb][la_heading spacer=\u00a0\u00bbline\u00a0\u00bb spacer_position=\u00a0\u00bbmiddle\u00a0\u00bb line_height=\u00a0\u00bb2″ title=\u00a0\u00bbNos bonnes Affaires\u00a0\u00bb title_class=\u00a0\u00bbh1″ subtitle_fz=\u00a0\u00bblg:16px;\u00a0\u00bb subtitle_lh=\u00a0\u00bblg:30px;\u00a0\u00bb line_width=\u00a0\u00bblg:80px;\u00a0\u00bb line_color=\u00a0\u00bb#9c84f4″ line_class=\u00a0\u00bbmargin-top-25 margin-bottom-20″][\/la_heading][la_divider height=\u00a0\u00bblg:40px;\u00a0\u00bb][\/vc_column][\/vc_row][vc_row full_width=\u00a0\u00bbstretch_row_content_no_spaces\u00a0\u00bb][vc_column][la_team_member style=\u00a0\u00bb2″ per_page=\u00a0\u00bb3″ enable_carousel=\u00a0\u00bbyes\u00a0\u00bb excerpt_length=\u00a0\u00bb15″ img_size=\u00a0\u00bbfull\u00a0\u00bb scroll_speed=\u00a0\u00bb1000″ ids=\u00a0\u00bb351, 349, 347″ column=\u00a0\u00bbxlg:3;lg:3;md:3;sm:2;xs:1;mb:1;\u00a0\u00bb el_class=\u00a0\u00bbgrid-item-no-padding margin-bottom-0″][\/vc_column][\/vc_row][vc_row][vc_column][la_heading spacer=\u00a0\u00bbline\u00a0\u00bb spacer_position=\u00a0\u00bbmiddle\u00a0\u00bb line_height=\u00a0\u00bb2″ title=\u00a0\u00bbInspirez – Vous\u00a0\u00bb title_class=\u00a0\u00bbh1″ subtitle_fz=\u00a0\u00bblg:16px;\u00a0\u00bb subtitle_lh=\u00a0\u00bblg:30px;\u00a0\u00bb line_width=\u00a0\u00bblg:80px;\u00a0\u00bb line_color=\u00a0\u00bb#9c84f4″ line_class=\u00a0\u00bbmargin-top-25 margin-bottom-20″]Laissez-vous guider par nos th\u00e9matiques[\/la_heading][\/vc_column][\/vc_row][vc_row full_width=\u00a0\u00bbstretch_row\u00a0\u00bb el_class=\u00a0\u00bbposition-relative\u00a0\u00bb][vc_column width=\u00a0\u00bb1\/2″ el_class=\u00a0\u00bbposition-absolute left-0″ offset=\u00a0\u00bbvc_hidden-xs\u00a0\u00bb][vc_single_image image=\u00a0\u00bb3031″ img_size=\u00a0\u00bbfull\u00a0\u00bb alignment=\u00a0\u00bbcenter\u00a0\u00bb][\/vc_column][vc_column width=\u00a0\u00bb1\/2″ el_class=\u00a0\u00bbvc_col-sm-push-6″][la_heading alignment=\u00a0\u00bbleft\u00a0\u00bb spacer=\u00a0\u00bbline\u00a0\u00bb spacer_position=\u00a0\u00bbmiddle\u00a0\u00bb line_height=\u00a0\u00bb2″ title=\u00a0\u00bbQuels sont les compagnies de voyage de ITB-Tours?\u00a0\u00bb title_class=\u00a0\u00bbh1″ subtitle_fz=\u00a0\u00bblg:16px;\u00a0\u00bb subtitle_lh=\u00a0\u00bblg:30px;\u00a0\u00bb line_width=\u00a0\u00bblg:80px;\u00a0\u00bb line_color=\u00a0\u00bb#9c84f4″ line_class=\u00a0\u00bbmargin-top-25 margin-bottom-20″][\/la_heading][vc_tta_accordion style=\u00a0\u00bbla-3″ c_position=\u00a0\u00bbright\u00a0\u00bb active_section=\u00a0\u00bb3″ collapsible_all=\u00a0\u00bbtrue\u00a0\u00bb][vc_tta_section title=\u00a0\u00bbListe des compagnies de ITB – Tours\u00a0\u00bb tab_id=\u00a0\u00bb1622507953649-1dce165c-1e29″][vc_column_text]<\/p>\n [\/vc_column_text][\/vc_tta_section][vc_tta_section title=\u00a0\u00bbVISIONS DE ITB-Tours\u00a0\u00bb tab_id=\u00a0\u00bb1622507953853-eea1ab5a-c004″][vc_column_text]Rendre chaque partie du monde accessible \u00e0 tous au temps choisi pour les voyages dans le respect des mesures de s\u00e9curit\u00e9 et sanitaire.[\/vc_column_text][\/vc_tta_section][vc_tta_section title=\u00a0\u00bbVALEURS DE ITB-Tours\u00a0\u00bb tab_id=\u00a0\u00bb1622507954083-d7b5a509-3253″][vc_column_text]ITB TOURS se distingue par le sens qu\u2019elle donne \u00e0 sa relation avec sa client\u00e8le. Nous faisons du respect de l\u2019\u00e9thique d’une norme essentielle de la relation avec nos clients et nos employ\u00e9s. Nous pla\u00e7ons les int\u00e9r\u00eats de nos clients au centre de nos pr\u00e9occupations. Ainsi, nous n\u2019avons qu\u2019une seule parole, celle du respect de nos engagement vis-\u00e0-vis de nos clients pour leur enti\u00e8re satisfaction.[\/vc_column_text][\/vc_tta_section][\/vc_tta_accordion][\/vc_column][\/vc_row][vc_row full_width=\u00a0\u00bbstretch_row_content_no_spaces\u00a0\u00bb equal_height=\u00a0\u00bbyes\u00a0\u00bb][vc_column width=\u00a0\u00bb1\/3″ el_class=\u00a0\u00bbmap-column-contact\u00a0\u00bb][\/vc_column][vc_column width=\u00a0\u00bb1\/3″][la_heading spacer=\u00a0\u00bbline\u00a0\u00bb spacer_position=\u00a0\u00bbmiddle\u00a0\u00bb line_height=\u00a0\u00bb2″ title=\u00a0\u00bbPour nous laissez un message\u00a0\u00bb title_class=\u00a0\u00bbh1″ subtitle_fz=\u00a0\u00bblg:16px;\u00a0\u00bb subtitle_lh=\u00a0\u00bblg:30px;\u00a0\u00bb line_width=\u00a0\u00bblg:80px;\u00a0\u00bb line_color=\u00a0\u00bb#9c84f4″ line_class=\u00a0\u00bbmargin-top-25 margin-bottom-20″][\/la_heading][contact-form-7 id=\u00a0\u00bb2381″][\/vc_column][vc_column width=\u00a0\u00bb1\/3″][\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":" [vc_row][vc_column][rev_slider_vc alias=\u00a0\u00bbhome-03″][\/vc_column][\/vc_row][vc_row][vc_column][la_heading tag=\u00a0\u00bbh3″ spacer=\u00a0\u00bbline\u00a0\u00bb spacer_position=\u00a0\u00bbmiddle\u00a0\u00bb line_height=\u00a0\u00bb2″ title=\u00a0\u00bbITB-Tours con\u00e7oit pour vous tous les voyages\u00a0\u00bb title_class=\u00a0\u00bbh3″ subtitle_fz=\u00a0\u00bblg:16px;\u00a0\u00bb subtitle_lh=\u00a0\u00bblg:30px;\u00a0\u00bb line_width=\u00a0\u00bblg:80px;\u00a0\u00bb line_color=\u00a0\u00bb#9c84f4″ line_class=\u00a0\u00bbmargin-top-25 margin-bottom-20″][\/la_heading][la_divider height=\u00a0\u00bblg:65px;sm:30px;\u00a0\u00bb][vc_images_carousel images=\u00a0\u00bb3072,3073,3074,3075,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092″ img_size=\u00a0\u00bb10000″ onclick=\u00a0\u00bblink_no\u00a0\u00bb speed=\u00a0\u00bb1000″ slides_per_view=\u00a0\u00bb4″ autoplay=\u00a0\u00bbyes\u00a0\u00bb hide_pagination_control=\u00a0\u00bbyes\u00a0\u00bb wrap=\u00a0\u00bbyes\u00a0\u00bb css=\u00a0\u00bb.vc_custom_1673994859681{background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}\u00a0\u00bb][\/vc_column][\/vc_row][vc_row][vc_column width=\u00a0\u00bb1\/3″][vc_single_image image=\u00a0\u00bb3117″ img_size=\u00a0\u00bb1000×500″ alignment=\u00a0\u00bbcenter\u00a0\u00bb style=\u00a0\u00bbvc_box_shadow_circle_2″][vc_wp_text] En cas de voyage n’h\u00e9siter pas \u00e0 nous contacter, pour b\u00e9n\u00e9ficier du prix indiqu\u00e9 […]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-554","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.agence-itb.com\/index.php?rest_route=\/wp\/v2\/pages\/554","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.agence-itb.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.agence-itb.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.agence-itb.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.agence-itb.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=554"}],"version-history":[{"count":58,"href":"https:\/\/www.agence-itb.com\/index.php?rest_route=\/wp\/v2\/pages\/554\/revisions"}],"predecessor-version":[{"id":3180,"href":"https:\/\/www.agence-itb.com\/index.php?rest_route=\/wp\/v2\/pages\/554\/revisions\/3180"}],"wp:attachment":[{"href":"https:\/\/www.agence-itb.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=554"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}
\n<\/span>Laissez derri\u00e8re vous. Des souvenirs, pas des r\u00eaves.<\/strong><\/span><\/p>\n\n