{"id":5752,"date":"2024-10-08T14:55:39","date_gmt":"2024-10-08T14:55:39","guid":{"rendered":"https:\/\/outstandingthemes.com\/comment-creer-une-barre-de-navigation-collante-avec-css\/"},"modified":"2024-11-18T22:13:40","modified_gmt":"2024-11-18T22:13:40","slug":"comment-creer-une-barre-de-navigation-collante-avec-css","status":"publish","type":"post","link":"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/","title":{"rendered":"Comment cr\u00e9er une barre de navigation collante avec CSS :"},"content":{"rendered":"\n<p>La cr\u00e9ation d&rsquo;une barre de navigation collante est un excellent moyen d&rsquo;am\u00e9liorer l&rsquo;exp\u00e9rience de navigation sur votre site web. Mais comment cr\u00e9er une barre de navigation collante avec <a href=\"https:\/\/outstandingthemes.com\/how-to-customize-your-wordpress-site-with-custom-css\/\">CSS<\/a>.   <\/p>\n\n<p>Vous trouverez ci-dessous les instructions \u00e9tape par \u00e9tape, accompagn\u00e9es d&rsquo;extraits de code que vous pouvez facilement copier sur votre site Web WordPress :<\/p>\n\n<h2 class=\"wp-block-heading\">1. Mise en place de la structure HTML<\/h2>\n\n<p>Commencez par mettre en place une structure HTML de base. Celle-ci comprend un \u00e9l\u00e9ment <code>&lt;header&gt;<\/code> pour la barre de navigation et un \u00e9l\u00e9ment <code>&lt;section&gt;<\/code> pour le contenu. <\/p>\n\n<pre class=\"wp-block-preformatted\">htmlKopier kode<code>&lt;!DOCTYPE html&gt;\n&lt;html lang=\"en\"&gt;\n&lt;head&gt;\n  &lt;meta charset=\"UTF-8\"&gt;\n  &lt;title&gt;Sticky Navbar&lt;\/title&gt;\n  &lt;link rel=\"stylesheet\" href=\"styles.css\"&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n  &lt;header class=\"navbar\"&gt;\n    &lt;nav&gt;\n      &lt;ul&gt;\n        &lt;li&gt;&lt;a href=\"#\"&gt;Home&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=\"#\"&gt;About&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=\"#\"&gt;Services&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=\"#\"&gt;Contact&lt;\/a&gt;&lt;\/li&gt;\n      &lt;\/ul&gt;\n    &lt;\/nav&gt;\n  &lt;\/header&gt;\n\n  &lt;section class=\"content\"&gt;\n    &lt;h1&gt;Scroll Down&lt;\/h1&gt;\n    &lt;p&gt;Content goes here...&lt;\/p&gt;\n    &lt;p&gt;More content here...&lt;\/p&gt;\n    &lt;p&gt;Keep scrolling to see the sticky effect in action.&lt;\/p&gt;\n  &lt;\/section&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;\n<\/code><\/pre>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">2. CSS pour le stylisme de base<\/h2>\n\n<p>Ajoutez le CSS suivant pour styliser la barre de navigation et le contenu. Cela permet de d\u00e9finir l&rsquo;apparence de la barre avant de la rendre collante. <\/p>\n\n<pre class=\"wp-block-preformatted\">cssKopier kode<code>\/* styles.css *\/\n\n\/* Reset basic styling *\/\n* {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\nbody {\n  font-family: Arial, sans-serif;\n  line-height: 1.6;\n}\n\n.navbar {\n  background-color: #333;\n  color: white;\n  padding: 10px 0;\n  text-align: center;\n}\n\n.navbar ul {\n  list-style: none;\n  display: flex;\n  justify-content: center;\n}\n\n.navbar li {\n  margin: 0 15px;\n}\n\n.navbar a {\n  color: white;\n  text-decoration: none;\n  font-weight: bold;\n}\n\n\/* Content section styling *\/\n.content {\n  padding: 50px;\n  background-color: #f4f4f4;\n  height: 2000px; \/* For demonstration purposes *\/\n}\n<\/code><\/pre>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">3. Faites en sorte que la barre de navigation soit collante<\/h2>\n\n<p>Pour que la barre de navigation reste en haut lorsque vous faites d\u00e9filer la page, ajoutez la propri\u00e9t\u00e9 <code>position: sticky<\/code>.<\/p>\n\n<pre class=\"wp-block-preformatted\">cssKopier kode<code>\/* Make navbar sticky *\/\n.navbar {\n  position: sticky;\n  top: 0;\n  z-index: 1000; \/* Keeps the navbar above other content *\/\n}\n<\/code><\/pre>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">4. Comment fonctionne la position collante<\/h2>\n\n<ul>\n<li><strong><code>position: sticky<\/code><\/strong>: Cette propri\u00e9t\u00e9 CSS maintient l&rsquo;\u00e9l\u00e9ment dans sa position relative jusqu&rsquo;\u00e0 ce qu&rsquo;une certaine position de d\u00e9filement soit atteinte, apr\u00e8s quoi il reste dans une position sp\u00e9cifi\u00e9e (comme <code>top: 0<\/code>).<\/li>\n\n\n\n<li><strong><code>top: 0<\/code><\/strong>: D\u00e9finit la distance \u00e0 laquelle la barre de navigation doit se situer par rapport au haut.<\/li>\n\n\n\n<li><strong><code>z-index: 1000<\/code><\/strong>: Assure que la barre de navigation reste au-dessus des autres \u00e9l\u00e9ments.<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">5. Am\u00e9liorations suppl\u00e9mentaires (facultatif)<\/h2>\n\n<p>Pour une meilleure esth\u00e9tique, vous pouvez ajouter un effet d&rsquo;ombre et une transition de la couleur d&rsquo;arri\u00e8re-plan.<\/p>\n\n<pre class=\"wp-block-preformatted\">cssKopier kode<code>\/* Optional enhancements *\/\n.navbar {\n  box-shadow: 0 4px 2px -2px gray;\n  transition: background-color 0.3s ease;\n}\n\n.navbar.sticky {\n  background-color: #222;\n}\n<\/code><\/pre>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">6. Code HTML et CSS final<\/h2>\n\n<p>Vous trouverez ci-dessous le code complet de votre barre de navigation collante.<\/p>\n\n<h3 class=\"wp-block-heading\"><strong>HTML<\/strong><\/h3>\n\n<pre class=\"wp-block-preformatted\">htmlKopier kode<code>&lt;!DOCTYPE html&gt;\n&lt;html lang=\"en\"&gt;\n&lt;head&gt;\n  &lt;meta charset=\"UTF-8\"&gt;\n  &lt;title&gt;Sticky Navbar&lt;\/title&gt;\n  &lt;link rel=\"stylesheet\" href=\"styles.css\"&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n  &lt;header class=\"navbar\"&gt;\n    &lt;nav&gt;\n      &lt;ul&gt;\n        &lt;li&gt;&lt;a href=\"#\"&gt;Home&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=\"#\"&gt;About&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=\"#\"&gt;Services&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=\"#\"&gt;Contact&lt;\/a&gt;&lt;\/li&gt;\n      &lt;\/ul&gt;\n    &lt;\/nav&gt;\n  &lt;\/header&gt;\n\n  &lt;section class=\"content\"&gt;\n    &lt;h1&gt;Scroll Down&lt;\/h1&gt;\n    &lt;p&gt;Content goes here...&lt;\/p&gt;\n    &lt;p&gt;More content here...&lt;\/p&gt;\n    &lt;p&gt;Keep scrolling to see the sticky effect in action.&lt;\/p&gt;\n  &lt;\/section&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;\n<\/code><\/pre>\n\n<h3 class=\"wp-block-heading\"><strong>CSS<\/strong><\/h3>\n\n<pre class=\"wp-block-preformatted\">cssKopier kode<code>\/* styles.css *\/\n\n\/* Reset basic styling *\/\n* {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\n\nbody {\n  font-family: Arial, sans-serif;\n  line-height: 1.6;\n}\n\n.navbar {\n  background-color: #333;\n  color: white;\n  padding: 10px 0;\n  text-align: center;\n  position: sticky;\n  top: 0;\n  z-index: 1000;\n  box-shadow: 0 4px 2px -2px gray;\n  transition: background-color 0.3s ease;\n}\n\n.navbar ul {\n  list-style: none;\n  display: flex;\n  justify-content: center;\n}\n\n.navbar li {\n  margin: 0 15px;\n}\n\n.navbar a {\n  color: white;\n  text-decoration: none;\n  font-weight: bold;\n}\n\n.navbar.sticky {\n  background-color: #222;\n}\n\n\/* Content section styling *\/\n.content {\n  padding: 50px;\n  background-color: #f4f4f4;\n  height: 2000px;\n}\n<\/code><\/pre>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">7. Mise en \u0153uvre dans WordPress<\/h2>\n\n<p>Pour ajouter ce code \u00e0 votre site web <a href=\"http:\/\/WordPress.org\">WordPress<\/a>:<\/p>\n\n<ol>\n<li><strong>Code HTML<\/strong>:\n<ul>\n<li>Utilisez le bloc <strong>HTML personnalis\u00e9<\/strong> dans l&rsquo;\u00e9diteur WordPress.<\/li>\n\n\n\n<li>Collez le code HTML \u00e0 l&rsquo;int\u00e9rieur de ce bloc \u00e0 l&rsquo;endroit o\u00f9 vous souhaitez que la barre de navigation et le contenu apparaissent.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Code CSS<\/strong>:<ul><li>Allez dans votre tableau de bord WordPress.<\/li><li>Naviguez vers <strong>Apparence<\/strong> &gt; <strong>Personnaliser<\/strong> &gt; <strong>Additional CSS.<\/strong><\/li><li>Collez le code CSS \u00e0 cet endroit.<\/li><\/ul>Si vous utilisez un th\u00e8me enfant ou un plugin CSS personnalis\u00e9, vous pouvez <em>\u00e9galement<\/em> ajouter le code CSS \u00e0 votre feuille de style.<\/li>\n<\/ol>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">8. Vous \u00eates pr\u00eat !<\/h2>\n\n<p>Vous disposez maintenant d&rsquo;une barre de navigation collante fonctionnelle sur votre site web. N&rsquo;h\u00e9sitez pas \u00e0 personnaliser les styles pour les adapter au design de votre site. <\/p>\n","protected":false},"excerpt":{"rendered":"La cr\u00e9ation d&rsquo;une barre de navigation collante est un excellent moyen d&rsquo;am\u00e9liorer l&rsquo;exp\u00e9rience de navigation sur votre site&hellip;","protected":false},"author":7829,"featured_media":5641,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"csco_display_header_overlay":false,"csco_singular_sidebar":"","csco_page_header_type":"","footnotes":""},"categories":[440,479],"tags":[557,487,556],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Comment cr\u00e9er une barre de navigation collante avec CSS : - Outstanding Themes<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Comment cr\u00e9er une barre de navigation collante avec CSS : - Outstanding Themes\" \/>\n<meta property=\"og:description\" content=\"La cr\u00e9ation d&rsquo;une barre de navigation collante est un excellent moyen d&rsquo;am\u00e9liorer l&rsquo;exp\u00e9rience de navigation sur votre site&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/\" \/>\n<meta property=\"og:site_name\" content=\"Outstanding Themes\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-08T14:55:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-18T22:13:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/outstandingthemes.com\/wp-content\/uploads\/2024\/10\/Skaermbillede-2024-10-08-kl.-08.20.50-e1728399287696.png\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"454\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"outstandingthemes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u00c9crit par\" \/>\n\t<meta name=\"twitter:data1\" content=\"outstandingthemes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/\",\"url\":\"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/\",\"name\":\"Comment cr\u00e9er une barre de navigation collante avec CSS : - Outstanding Themes\",\"isPartOf\":{\"@id\":\"https:\/\/outstandingthemes.com\/fr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/outstandingthemes.com\/wp-content\/uploads\/2024\/10\/Skaermbillede-2024-10-08-kl.-08.20.50-e1728399287696.png\",\"datePublished\":\"2024-10-08T14:55:39+00:00\",\"dateModified\":\"2024-11-18T22:13:40+00:00\",\"author\":{\"@id\":\"https:\/\/outstandingthemes.com\/fr\/#\/schema\/person\/b86ce9d8633057b23d4bc9ce7e1b341a\"},\"breadcrumb\":{\"@id\":\"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/#primaryimage\",\"url\":\"https:\/\/outstandingthemes.com\/wp-content\/uploads\/2024\/10\/Skaermbillede-2024-10-08-kl.-08.20.50-e1728399287696.png\",\"contentUrl\":\"https:\/\/outstandingthemes.com\/wp-content\/uploads\/2024\/10\/Skaermbillede-2024-10-08-kl.-08.20.50-e1728399287696.png\",\"width\":800,\"height\":454},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/outstandingthemes.com\/fr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Comment cr\u00e9er une barre de navigation collante avec CSS :\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/outstandingthemes.com\/fr\/#website\",\"url\":\"https:\/\/outstandingthemes.com\/fr\/\",\"name\":\"Outstanding Themes\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/outstandingthemes.com\/fr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/outstandingthemes.com\/fr\/#\/schema\/person\/b86ce9d8633057b23d4bc9ce7e1b341a\",\"name\":\"outstandingthemes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/outstandingthemes.com\/fr\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/794634315590831eaece4942d98a00a8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/794634315590831eaece4942d98a00a8?s=96&d=mm&r=g\",\"caption\":\"outstandingthemes\"},\"url\":\"https:\/\/outstandingthemes.com\/fr\/author\/outstandingthemes\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Comment cr\u00e9er une barre de navigation collante avec CSS : - Outstanding Themes","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/","og_locale":"fr_FR","og_type":"article","og_title":"Comment cr\u00e9er une barre de navigation collante avec CSS : - Outstanding Themes","og_description":"La cr\u00e9ation d&rsquo;une barre de navigation collante est un excellent moyen d&rsquo;am\u00e9liorer l&rsquo;exp\u00e9rience de navigation sur votre site&hellip;","og_url":"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/","og_site_name":"Outstanding Themes","article_published_time":"2024-10-08T14:55:39+00:00","article_modified_time":"2024-11-18T22:13:40+00:00","og_image":[{"width":800,"height":454,"url":"https:\/\/outstandingthemes.com\/wp-content\/uploads\/2024\/10\/Skaermbillede-2024-10-08-kl.-08.20.50-e1728399287696.png","type":"image\/png"}],"author":"outstandingthemes","twitter_card":"summary_large_image","twitter_misc":{"\u00c9crit par":"outstandingthemes","Dur\u00e9e de lecture estim\u00e9e":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/","url":"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/","name":"Comment cr\u00e9er une barre de navigation collante avec CSS : - Outstanding Themes","isPartOf":{"@id":"https:\/\/outstandingthemes.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/#primaryimage"},"image":{"@id":"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/#primaryimage"},"thumbnailUrl":"https:\/\/outstandingthemes.com\/wp-content\/uploads\/2024\/10\/Skaermbillede-2024-10-08-kl.-08.20.50-e1728399287696.png","datePublished":"2024-10-08T14:55:39+00:00","dateModified":"2024-11-18T22:13:40+00:00","author":{"@id":"https:\/\/outstandingthemes.com\/fr\/#\/schema\/person\/b86ce9d8633057b23d4bc9ce7e1b341a"},"breadcrumb":{"@id":"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/#primaryimage","url":"https:\/\/outstandingthemes.com\/wp-content\/uploads\/2024\/10\/Skaermbillede-2024-10-08-kl.-08.20.50-e1728399287696.png","contentUrl":"https:\/\/outstandingthemes.com\/wp-content\/uploads\/2024\/10\/Skaermbillede-2024-10-08-kl.-08.20.50-e1728399287696.png","width":800,"height":454},{"@type":"BreadcrumbList","@id":"https:\/\/outstandingthemes.com\/fr\/comment-creer-une-barre-de-navigation-collante-avec-css\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/outstandingthemes.com\/fr\/"},{"@type":"ListItem","position":2,"name":"Comment cr\u00e9er une barre de navigation collante avec CSS :"}]},{"@type":"WebSite","@id":"https:\/\/outstandingthemes.com\/fr\/#website","url":"https:\/\/outstandingthemes.com\/fr\/","name":"Outstanding Themes","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/outstandingthemes.com\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Person","@id":"https:\/\/outstandingthemes.com\/fr\/#\/schema\/person\/b86ce9d8633057b23d4bc9ce7e1b341a","name":"outstandingthemes","image":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/outstandingthemes.com\/fr\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/794634315590831eaece4942d98a00a8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/794634315590831eaece4942d98a00a8?s=96&d=mm&r=g","caption":"outstandingthemes"},"url":"https:\/\/outstandingthemes.com\/fr\/author\/outstandingthemes\/"}]}},"_links":{"self":[{"href":"https:\/\/outstandingthemes.com\/fr\/wp-json\/wp\/v2\/posts\/5752"}],"collection":[{"href":"https:\/\/outstandingthemes.com\/fr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/outstandingthemes.com\/fr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/outstandingthemes.com\/fr\/wp-json\/wp\/v2\/users\/7829"}],"replies":[{"embeddable":true,"href":"https:\/\/outstandingthemes.com\/fr\/wp-json\/wp\/v2\/comments?post=5752"}],"version-history":[{"count":1,"href":"https:\/\/outstandingthemes.com\/fr\/wp-json\/wp\/v2\/posts\/5752\/revisions"}],"predecessor-version":[{"id":5754,"href":"https:\/\/outstandingthemes.com\/fr\/wp-json\/wp\/v2\/posts\/5752\/revisions\/5754"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/outstandingthemes.com\/fr\/wp-json\/wp\/v2\/media\/5641"}],"wp:attachment":[{"href":"https:\/\/outstandingthemes.com\/fr\/wp-json\/wp\/v2\/media?parent=5752"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/outstandingthemes.com\/fr\/wp-json\/wp\/v2\/categories?post=5752"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/outstandingthemes.com\/fr\/wp-json\/wp\/v2\/tags?post=5752"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}