{"id":5768,"date":"2024-10-08T14:55:39","date_gmt":"2024-10-08T14:55:39","guid":{"rendered":"https:\/\/outstandingthemes.com\/wie-man-eine-sticky-navbar-mit-css-erstellt\/"},"modified":"2024-11-18T22:13:43","modified_gmt":"2024-11-18T22:13:43","slug":"wie-man-eine-sticky-navbar-mit-css-erstellt","status":"publish","type":"post","link":"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/","title":{"rendered":"Wie man eine Sticky Navbar mit CSS erstellt:"},"content":{"rendered":"\n<p>Die Erstellung einer Sticky-Navbar ist eine gro\u00dfartige M\u00f6glichkeit, die Navigation auf Ihrer Website zu verbessern. Aber wie erstellt man eine Sticky-Navbar mit <a href=\"https:\/\/outstandingthemes.com\/how-to-customize-your-wordpress-site-with-custom-css\/\">CSS<\/a>.   <\/p>\n\n<p>Im Folgenden finden Sie eine Schritt-f\u00fcr-Schritt-Anleitung mit Code-Schnipseln, die Sie einfach in Ihre WordPress-Website kopieren k\u00f6nnen:<\/p>\n\n<h2 class=\"wp-block-heading\">1. Einrichten der HTML-Struktur<\/h2>\n\n<p>Beginnen Sie damit, eine grundlegende HTML-Struktur einzurichten. Dazu geh\u00f6rt ein <code>&lt;header&gt;<\/code> Element f\u00fcr die Navigationsleiste und ein <code>&lt;section&gt;<\/code> f\u00fcr den Inhalt. <\/p>\n\n<pre class=\"wp-block-preformatted\">htmlKopierkode<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 f\u00fcr grundlegendes Styling<\/h2>\n\n<p>F\u00fcgen Sie das folgende CSS hinzu, um die Navigationsleiste und den Inhalt zu gestalten. Damit wird das Erscheinungsbild festgelegt, bevor die Leiste klebrig wird. <\/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. Machen Sie die Navbar klebrig<\/h2>\n\n<p>Damit die Navigationsleiste beim Scrollen am oberen Rand bleibt, f\u00fcgen Sie die Eigenschaft <code>position: sticky<\/code> hinzu.<\/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. Wie die Sticky Position funktioniert<\/h2>\n\n<ul>\n<li><strong><code>position: sticky<\/code><\/strong>: Mit dieser CSS-Eigenschaft bleibt das Element in seiner relativen Position, bis eine bestimmte Bildlaufposition erreicht ist. Danach bleibt es an einer bestimmten Position (wie <code>top: 0<\/code>).<\/li>\n\n\n\n<li><strong><code>top: 0<\/code><\/strong>: Legt fest, wie weit die Navigationsleiste vom oberen Rand entfernt sein soll.<\/li>\n\n\n\n<li><strong><code>z-index: 1000<\/code><\/strong>: Sorgt daf\u00fcr, dass die Navigationsleiste \u00fcber anderen Elementen bleibt.<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">5. Zus\u00e4tzliche Erweiterungen (optional)<\/h2>\n\n<p>F\u00fcr eine bessere \u00c4sthetik k\u00f6nnen Sie einen Schatteneffekt und einen \u00dcbergang der Hintergrundfarbe hinzuf\u00fcgen.<\/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. Endg\u00fcltiger HTML- &amp; CSS-Code<\/h2>\n\n<p>Nachfolgend finden Sie den vollst\u00e4ndigen Code f\u00fcr Ihre Sticky Navbar.<\/p>\n\n<h3 class=\"wp-block-heading\"><strong>HTML<\/strong><\/h3>\n\n<pre class=\"wp-block-preformatted\">htmlKopierkode<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. Implementierung in WordPress<\/h2>\n\n<p>So f\u00fcgen Sie diesen Code zu Ihrer <a href=\"http:\/\/WordPress.org\">WordPress-Website<\/a> hinzu:<\/p>\n\n<ol>\n<li><strong>HTML-Code<\/strong>:\n<ul>\n<li>Verwenden Sie den <strong>Custom HTML-Block<\/strong> im WordPress-Editor.<\/li>\n\n\n\n<li>F\u00fcgen Sie den HTML-Code innerhalb dieses Blocks an der Stelle ein, an der die Navigationsleiste und der Inhalt erscheinen sollen.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>CSS-Code<\/strong>:<ul><li>Gehen Sie zu Ihrem WordPress-Dashboard.<\/li><li>Navigieren Sie zu <strong>Erscheinungsbild<\/strong> &gt; <strong>Anpassen<\/strong> &gt; <strong>Zus\u00e4tzliche CSS<\/strong>.<\/li><li>F\u00fcgen Sie den CSS-Code dort ein.<\/li><\/ul>Wenn Sie ein Child-Theme oder ein benutzerdefiniertes CSS-Plugin verwenden, k\u00f6nnen Sie den CSS-Code <em>auch<\/em> in Ihr Stylesheet einf\u00fcgen.<\/li>\n<\/ol>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">8. Sie sind bereit!<\/h2>\n\n<p>Jetzt haben Sie eine funktionale Navigationsleiste auf Ihrer Website. Sie k\u00f6nnen die Stile nach Belieben an das Design Ihrer Website anpassen. <\/p>\n","protected":false},"excerpt":{"rendered":"Die Erstellung einer Sticky-Navbar ist eine gro\u00dfartige M\u00f6glichkeit, die Navigation auf Ihrer Website zu verbessern. Aber wie erstellt&hellip;","protected":false},"author":7829,"featured_media":5642,"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":[474,439],"tags":[509,575,574],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Wie man eine Sticky Navbar mit CSS erstellt: - 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\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Wie man eine Sticky Navbar mit CSS erstellt: - Outstanding Themes\" \/>\n<meta property=\"og:description\" content=\"Die Erstellung einer Sticky-Navbar ist eine gro\u00dfartige M\u00f6glichkeit, die Navigation auf Ihrer Website zu verbessern. Aber wie erstellt&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/\" \/>\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:43+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=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"outstandingthemes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/\",\"url\":\"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/\",\"name\":\"Wie man eine Sticky Navbar mit CSS erstellt: - Outstanding Themes\",\"isPartOf\":{\"@id\":\"https:\/\/outstandingthemes.com\/de\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/#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:43+00:00\",\"author\":{\"@id\":\"https:\/\/outstandingthemes.com\/de\/#\/schema\/person\/b86ce9d8633057b23d4bc9ce7e1b341a\"},\"breadcrumb\":{\"@id\":\"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/#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\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/outstandingthemes.com\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Wie man eine Sticky Navbar mit CSS erstellt:\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/outstandingthemes.com\/de\/#website\",\"url\":\"https:\/\/outstandingthemes.com\/de\/\",\"name\":\"Outstanding Themes\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/outstandingthemes.com\/de\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/outstandingthemes.com\/de\/#\/schema\/person\/b86ce9d8633057b23d4bc9ce7e1b341a\",\"name\":\"outstandingthemes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/outstandingthemes.com\/de\/#\/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\/de\/author\/outstandingthemes\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Wie man eine Sticky Navbar mit CSS erstellt: - 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\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/","og_locale":"de_DE","og_type":"article","og_title":"Wie man eine Sticky Navbar mit CSS erstellt: - Outstanding Themes","og_description":"Die Erstellung einer Sticky-Navbar ist eine gro\u00dfartige M\u00f6glichkeit, die Navigation auf Ihrer Website zu verbessern. Aber wie erstellt&hellip;","og_url":"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/","og_site_name":"Outstanding Themes","article_published_time":"2024-10-08T14:55:39+00:00","article_modified_time":"2024-11-18T22:13:43+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":{"Verfasst von":"outstandingthemes","Gesch\u00e4tzte Lesezeit":"4\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/","url":"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/","name":"Wie man eine Sticky Navbar mit CSS erstellt: - Outstanding Themes","isPartOf":{"@id":"https:\/\/outstandingthemes.com\/de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/#primaryimage"},"image":{"@id":"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/#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:43+00:00","author":{"@id":"https:\/\/outstandingthemes.com\/de\/#\/schema\/person\/b86ce9d8633057b23d4bc9ce7e1b341a"},"breadcrumb":{"@id":"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/outstandingthemes.com\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/#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\/de\/wie-man-eine-sticky-navbar-mit-css-erstellt\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/outstandingthemes.com\/de\/"},{"@type":"ListItem","position":2,"name":"Wie man eine Sticky Navbar mit CSS erstellt:"}]},{"@type":"WebSite","@id":"https:\/\/outstandingthemes.com\/de\/#website","url":"https:\/\/outstandingthemes.com\/de\/","name":"Outstanding Themes","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/outstandingthemes.com\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Person","@id":"https:\/\/outstandingthemes.com\/de\/#\/schema\/person\/b86ce9d8633057b23d4bc9ce7e1b341a","name":"outstandingthemes","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/outstandingthemes.com\/de\/#\/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\/de\/author\/outstandingthemes\/"}]}},"_links":{"self":[{"href":"https:\/\/outstandingthemes.com\/de\/wp-json\/wp\/v2\/posts\/5768"}],"collection":[{"href":"https:\/\/outstandingthemes.com\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/outstandingthemes.com\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/outstandingthemes.com\/de\/wp-json\/wp\/v2\/users\/7829"}],"replies":[{"embeddable":true,"href":"https:\/\/outstandingthemes.com\/de\/wp-json\/wp\/v2\/comments?post=5768"}],"version-history":[{"count":1,"href":"https:\/\/outstandingthemes.com\/de\/wp-json\/wp\/v2\/posts\/5768\/revisions"}],"predecessor-version":[{"id":5770,"href":"https:\/\/outstandingthemes.com\/de\/wp-json\/wp\/v2\/posts\/5768\/revisions\/5770"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/outstandingthemes.com\/de\/wp-json\/wp\/v2\/media\/5642"}],"wp:attachment":[{"href":"https:\/\/outstandingthemes.com\/de\/wp-json\/wp\/v2\/media?parent=5768"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/outstandingthemes.com\/de\/wp-json\/wp\/v2\/categories?post=5768"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/outstandingthemes.com\/de\/wp-json\/wp\/v2\/tags?post=5768"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}