{"id":14830,"date":"2015-07-05T12:14:02","date_gmt":"2015-07-05T10:14:02","guid":{"rendered":"https:\/\/marabelia.com\/?p=14830"},"modified":"2025-06-20T13:03:54","modified_gmt":"2025-06-20T11:03:54","slug":"how-to-create-a-new-link-style-in-wordpress","status":"publish","type":"post","link":"https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/","title":{"rendered":"How to Create a New Link Style in WordPress"},"content":{"rendered":"<div class=\"wpb-content-wrapper\">[vc_row][vc_column][vc_column_text]\n<p style=\"text-align: justify;\">I&#8217;m going to explain how to create a new style in our WordPress template for <strong>linked text.<\/strong><\/p>\n<p style=\"text-align: justify;\">The first thing we\u2019re going to do is go to the <strong><a href=\"https:\/\/marabelia.com\/instalacion-y-configuracion-del-tema-hijo-child-theme-css-y-php\/\" target=\"_blank\" rel=\"noopener\">child theme<\/a><\/strong> of our WordPress template, or alternatively to the CSS customizer included with the theme. I recommend building a website from the child theme because in the long run it\u2019s cleaner and more convenient.<\/p>\n<p style=\"text-align: justify;\">From there, we\u2019re going to create a <strong>new style<\/strong> for some links on our website, so that <strong>those links using our new style tag will look different from the rest<\/strong>.<\/p>\n<p style=\"text-align: justify;\">The first thing we need to do is <em>come up with a name for our style<\/em>. We could call it <em>cuchumi-pitifl\u00e1utico<\/em>, but I recommend giving it a short and meaningful name. I&#8217;m going to call my new style <em>pink-over<\/em>, because my links will be gray, underlined, and when the mouse hovers over them, they&#8217;ll turn white with a pink background:<\/p>\n<p style=\"text-align: justify;\"><a class=\"pink-over\" href=\"http:\/\/gooddesign.es\/enlacequesea\">I\u2019m a different link! Hover to see the effect!<\/a><\/p>\n<p style=\"text-align: justify;\">Let\u2019s get started:<\/p>\n<p style=\"text-align: justify;\">Inside \/*&#8211; this &#8211;*\/ we can write whatever we want without affecting our CSS code. This is used to write notes that help us locate our style easily:<\/p>\n<pre><code>\/*----------- PINK-OVER. Links with pink background on hover ----------- *\/<\/code><\/pre>\n<p style=\"text-align: justify;\">A link has four states, so we need to define each one:<\/p>\n<pre><code>a:link      \/* Unvisited link *\/\r\na:visited   \/* Visited link *\/\r\na:active    \/* Active link *\/\r\na:hover     \/* Mouse over link *\/\r\n<\/code><\/pre>\n<p style=\"text-align: justify;\">For each of these states, we will define certain properties:<\/p>\n<pre><code>\r\nfont-family     \/*Font*\/\r\nfont-size       \/*Size*\/\r\nfont-weight     \/*Weight*\/\r\ncolor           \/*Text color*\/\r\ntext-decoration \/*Underline*\/\r\nbackground      \/*Background color*\/\r\n<\/code><\/pre>\n<p style=\"text-align: justify;\">There are many other properties like letter spacing or font style (italic). The complete list of CSS properties for text and images can be found <strong><a href=\"http:\/\/www.mclibre.org\/consultar\/htmlcss\/css\/css_propiedades.html\" target=\"_blank\" rel=\"noopener\">here<\/a><\/strong>.<\/p>\n<p style=\"text-align: justify;\">Now, we just need to start writing our CSS style. We\u2019ll begin by defining the <em>a:link<\/em> state of our new link style. To do this, we specify it as a link with \/<em>a.<\/em>\/ followed by the name of our new style \/<em>pink-over<\/em>\/ and the state we want to define, in this case \/<em>:link<\/em>\/.<\/p>\n<p style=\"text-align: justify;\">In my style, it looks like this:<\/p>\n<pre><code>\r\na.pink-over:link {\r\n\r\n}\r\n<\/code><\/pre>\n<p style=\"text-align: justify;\">Inside the brackets we include the properties we want to apply to the links. In my case, I want to define font type, color, size, weight, and underline:<\/p>\n<pre><code>\r\na.pink-over:link {\r\nfont-family: sans-serif;\r\nfont-size: 15px;\r\nfont-weight: 400;\r\ncolor: #545454;\r\ntext-decoration: underline;\r\n}\r\n<\/code><\/pre>\n<p style=\"text-align: justify;\">You can choose colors using the picker from <strong><a href=\"http:\/\/www.w3schools.com\/tags\/ref_colorpicker.asp\" target=\"_blank\" rel=\"noopener\">this page<\/a><\/strong>, and explore font families via <strong><a href=\"http:\/\/www.mclibre.org\/consultar\/htmlcss\/css\/css_fuente.html#Familia\" target=\"_blank\" rel=\"noopener\">this link<\/a><\/strong>. The rest of the properties are fairly intuitive and you can test them as needed.<\/p>\n<p style=\"text-align: justify;\">It\u2019s that easy. We\u2019ve just created a new style for links!<\/p>\n<p style=\"text-align: justify;\">Links tagged with this class will have a sans-serif font of 15px, medium weight (400), gray color and will be underlined.<\/p>\n<p style=\"text-align: justify;\">Now we want to add a hover style so that when someone hovers over the link, the underline disappears, the text turns white, and the background becomes pink. To do this, we define the \/<em>a:hover<\/em>\/ state:<\/p>\n<pre><code>\r\na.pink-over:hover {\r\nfont-family: sans-serif;\r\nfont-size: 15px;\r\nfont-weight: 400;\r\ncolor: #ffffff;\r\ntext-decoration: none;\r\nbackground:#ee0467;\r\n}\r\n<\/code><\/pre>\n<p style=\"text-align: justify;\">Our CSS for links is almost done. Let\u2019s define the remaining two states:<\/p>\n<pre><code>a:visited \/*Visited link*\/\r\na:active  \/*Active link*\/<\/code><\/pre>\n<p style=\"text-align: justify;\">In both of these cases, we want the link to appear the same as in the original state, meaning gray and underlined. So we\u2019ll copy the code from \/<em>a:link<\/em>\/ and define these two states with the same properties:<\/p>\n<pre><code>\/*----------- PINK-OVER. Links with pink background on hover ----------- *\/\r\n\r\na.pink-over:link {\r\nfont-family: sans-serif;\r\nfont-size: 15px;\r\nfont-weight: 400;\r\ncolor: #545454;\r\ntext-decoration: underline;\r\n}\r\n\r\na.pink-over:hover {\r\nfont-family: sans-serif;\r\nfont-size: 15px;\r\nfont-weight: 400;\r\ncolor: #ffffff;\r\ntext-decoration: none;\r\nbackground:#ee0467;\r\n}\r\n\r\na.pink-over:visited {\r\nfont-family: sans-serif;\r\nfont-size: 15px;\r\nfont-weight: 400;\r\ncolor: #545454;\r\ntext-decoration: underline;\r\n}\r\n\r\na.pink-over:active {\r\nfont-family: sans-serif;\r\nfont-size: 15px;\r\nfont-weight: 400;\r\ncolor: #545454;\r\ntext-decoration: underline;\r\n}\r\n<\/code><\/pre>\n<p style=\"text-align: justify;\"><strong>Now we can check how our new style works!<\/strong><\/p>\n<p style=\"text-align: justify;\">Save the changes, go to the page on your website with the link you want to <em>style<\/em>, and in the text editor, apply your custom style by adding the tag:<\/p>\n<pre><code>&lt;a class=\"stylename\"<\/code><\/pre>\n<p style=\"text-align: justify;\">In the text editor, the link would look like this:<\/p>\n<pre><code>&lt;a class=\"pink-over\" href=\"http:\/\/link-url\"&gt;HELLO! I\u2019m a PINK-OVER link&lt;\/a&gt;<\/code><\/pre>\n<p style=\"text-align: center;\">And the result would be this:<\/p>\n<p style=\"text-align: center;\"><a class=\"pink-over\" href=\"http:\/\/gooddesign.es\/enlace-que-sea\">HELLO! I\u2019m a PINK-OVER link<\/a><\/p>\n<p>&nbsp;<\/p>\n<h4 style=\"text-align: center;\"><strong>Voil\u00e0!<\/strong><\/h4>\n[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text]\n[\/vc_column_text][\/vc_column][\/vc_row]\n<\/div>","protected":false},"excerpt":{"rendered":"[vc_row][vc_column][vc_column_text] I&#8217;m going to explain how to create a new style in our WordPress template for linked text. The first thing we\u2019re going to do is go to the child theme of our WordPress template, or alternatively to the CSS customizer included with the theme. I recommend building a website from the child theme because [&#8230;]\n","protected":false},"author":1,"featured_media":13358,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[98],"tags":[],"class_list":["post-14830","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Create a New Link Style in WordPress &#8226; Marabelia | Agencia Digital en Valencia<\/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:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create a New Link Style in WordPress &#8226; Marabelia | Agencia Digital en Valencia\" \/>\n<meta property=\"og:description\" content=\"[vc_row][vc_column][vc_column_text] I&#8217;m going to explain how to create a new style in our WordPress template for linked text. The first thing we\u2019re going to do is go to the child theme of our WordPress template, or alternatively to the CSS customizer included with the theme. I recommend building a website from the child theme because [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/\" \/>\n<meta property=\"og:site_name\" content=\"Marabelia | Agencia Digital en Valencia\" \/>\n<meta property=\"article:published_time\" content=\"2015-07-05T10:14:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-20T11:03:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/marabelia.com\/wp-content\/uploads\/2015\/07\/pink.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"829\" \/>\n\t<meta property=\"og:image:height\" content=\"419\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin-mbl\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin-mbl\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/marabelia.com\\\/en\\\/how-to-create-a-new-link-style-in-wordpress\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/marabelia.com\\\/en\\\/how-to-create-a-new-link-style-in-wordpress\\\/\"},\"author\":{\"name\":\"admin-mbl\",\"@id\":\"https:\\\/\\\/marabelia.com\\\/#\\\/schema\\\/person\\\/2fe20801a852ce3df5a1a0260364e90c\"},\"headline\":\"How to Create a New Link Style in WordPress\",\"datePublished\":\"2015-07-05T10:14:02+00:00\",\"dateModified\":\"2025-06-20T11:03:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/marabelia.com\\\/en\\\/how-to-create-a-new-link-style-in-wordpress\\\/\"},\"wordCount\":596,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/marabelia.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/marabelia.com\\\/en\\\/how-to-create-a-new-link-style-in-wordpress\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/marabelia.com\\\/wp-content\\\/uploads\\\/2015\\\/07\\\/pink.jpg\",\"articleSection\":[\"Wordpress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/marabelia.com\\\/en\\\/how-to-create-a-new-link-style-in-wordpress\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/marabelia.com\\\/en\\\/how-to-create-a-new-link-style-in-wordpress\\\/\",\"url\":\"https:\\\/\\\/marabelia.com\\\/en\\\/how-to-create-a-new-link-style-in-wordpress\\\/\",\"name\":\"How to Create a New Link Style in WordPress &#8226; Marabelia | Agencia Digital en Valencia\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/marabelia.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/marabelia.com\\\/en\\\/how-to-create-a-new-link-style-in-wordpress\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/marabelia.com\\\/en\\\/how-to-create-a-new-link-style-in-wordpress\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/marabelia.com\\\/wp-content\\\/uploads\\\/2015\\\/07\\\/pink.jpg\",\"datePublished\":\"2015-07-05T10:14:02+00:00\",\"dateModified\":\"2025-06-20T11:03:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/marabelia.com\\\/en\\\/how-to-create-a-new-link-style-in-wordpress\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/marabelia.com\\\/en\\\/how-to-create-a-new-link-style-in-wordpress\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/marabelia.com\\\/en\\\/how-to-create-a-new-link-style-in-wordpress\\\/#primaryimage\",\"url\":\"https:\\\/\\\/marabelia.com\\\/wp-content\\\/uploads\\\/2015\\\/07\\\/pink.jpg\",\"contentUrl\":\"https:\\\/\\\/marabelia.com\\\/wp-content\\\/uploads\\\/2015\\\/07\\\/pink.jpg\",\"width\":829,\"height\":419},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/marabelia.com\\\/en\\\/how-to-create-a-new-link-style-in-wordpress\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/marabelia.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Create a New Link Style in WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/marabelia.com\\\/#website\",\"url\":\"https:\\\/\\\/marabelia.com\\\/\",\"name\":\"MARABELIA. Dise\u00f1o web Valencia. Marketing Digital.\",\"description\":\"Dise\u00f1o web, dise\u00f1o gr\u00e1fico, marketing online y redes sociales.\",\"publisher\":{\"@id\":\"https:\\\/\\\/marabelia.com\\\/#organization\"},\"alternateName\":\"MARABELIA. Dise\u00f1o Web Valencia.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/marabelia.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/marabelia.com\\\/#organization\",\"name\":\"MARABELIA . Dise\u00f1o web Valencia. Marketing Digital.\",\"url\":\"https:\\\/\\\/marabelia.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/marabelia.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/marabelia.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Anagrama-Marabelia.png\",\"contentUrl\":\"https:\\\/\\\/marabelia.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Anagrama-Marabelia.png\",\"width\":1080,\"height\":1080,\"caption\":\"MARABELIA . Dise\u00f1o web Valencia. Marketing Digital.\"},\"image\":{\"@id\":\"https:\\\/\\\/marabelia.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/marabelia.com\\\/#\\\/schema\\\/person\\\/2fe20801a852ce3df5a1a0260364e90c\",\"name\":\"admin-mbl\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87b0e960b549e14d44b3d54f5f2ed80a37ea4558d15db3d525f1de972501f8b8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87b0e960b549e14d44b3d54f5f2ed80a37ea4558d15db3d525f1de972501f8b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87b0e960b549e14d44b3d54f5f2ed80a37ea4558d15db3d525f1de972501f8b8?s=96&d=mm&r=g\",\"caption\":\"admin-mbl\"},\"sameAs\":[\"https:\\\/\\\/marabelia.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Create a New Link Style in WordPress &#8226; Marabelia | Agencia Digital en Valencia","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:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/","og_locale":"en_US","og_type":"article","og_title":"How to Create a New Link Style in WordPress &#8226; Marabelia | Agencia Digital en Valencia","og_description":"[vc_row][vc_column][vc_column_text] I&#8217;m going to explain how to create a new style in our WordPress template for linked text. The first thing we\u2019re going to do is go to the child theme of our WordPress template, or alternatively to the CSS customizer included with the theme. I recommend building a website from the child theme because [...]","og_url":"https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/","og_site_name":"Marabelia | Agencia Digital en Valencia","article_published_time":"2015-07-05T10:14:02+00:00","article_modified_time":"2025-06-20T11:03:54+00:00","og_image":[{"width":829,"height":419,"url":"https:\/\/marabelia.com\/wp-content\/uploads\/2015\/07\/pink.jpg","type":"image\/jpeg"}],"author":"admin-mbl","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin-mbl","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/#article","isPartOf":{"@id":"https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/"},"author":{"name":"admin-mbl","@id":"https:\/\/marabelia.com\/#\/schema\/person\/2fe20801a852ce3df5a1a0260364e90c"},"headline":"How to Create a New Link Style in WordPress","datePublished":"2015-07-05T10:14:02+00:00","dateModified":"2025-06-20T11:03:54+00:00","mainEntityOfPage":{"@id":"https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/"},"wordCount":596,"commentCount":0,"publisher":{"@id":"https:\/\/marabelia.com\/#organization"},"image":{"@id":"https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/marabelia.com\/wp-content\/uploads\/2015\/07\/pink.jpg","articleSection":["Wordpress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/","url":"https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/","name":"How to Create a New Link Style in WordPress &#8226; Marabelia | Agencia Digital en Valencia","isPartOf":{"@id":"https:\/\/marabelia.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/#primaryimage"},"image":{"@id":"https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/marabelia.com\/wp-content\/uploads\/2015\/07\/pink.jpg","datePublished":"2015-07-05T10:14:02+00:00","dateModified":"2025-06-20T11:03:54+00:00","breadcrumb":{"@id":"https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/#primaryimage","url":"https:\/\/marabelia.com\/wp-content\/uploads\/2015\/07\/pink.jpg","contentUrl":"https:\/\/marabelia.com\/wp-content\/uploads\/2015\/07\/pink.jpg","width":829,"height":419},{"@type":"BreadcrumbList","@id":"https:\/\/marabelia.com\/en\/how-to-create-a-new-link-style-in-wordpress\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/marabelia.com\/en\/"},{"@type":"ListItem","position":2,"name":"How to Create a New Link Style in WordPress"}]},{"@type":"WebSite","@id":"https:\/\/marabelia.com\/#website","url":"https:\/\/marabelia.com\/","name":"MARABELIA. Dise\u00f1o web Valencia. Marketing Digital.","description":"Dise\u00f1o web, dise\u00f1o gr\u00e1fico, marketing online y redes sociales.","publisher":{"@id":"https:\/\/marabelia.com\/#organization"},"alternateName":"MARABELIA. Dise\u00f1o Web Valencia.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/marabelia.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/marabelia.com\/#organization","name":"MARABELIA . Dise\u00f1o web Valencia. Marketing Digital.","url":"https:\/\/marabelia.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/marabelia.com\/#\/schema\/logo\/image\/","url":"https:\/\/marabelia.com\/wp-content\/uploads\/2025\/12\/Anagrama-Marabelia.png","contentUrl":"https:\/\/marabelia.com\/wp-content\/uploads\/2025\/12\/Anagrama-Marabelia.png","width":1080,"height":1080,"caption":"MARABELIA . Dise\u00f1o web Valencia. Marketing Digital."},"image":{"@id":"https:\/\/marabelia.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/marabelia.com\/#\/schema\/person\/2fe20801a852ce3df5a1a0260364e90c","name":"admin-mbl","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/87b0e960b549e14d44b3d54f5f2ed80a37ea4558d15db3d525f1de972501f8b8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/87b0e960b549e14d44b3d54f5f2ed80a37ea4558d15db3d525f1de972501f8b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/87b0e960b549e14d44b3d54f5f2ed80a37ea4558d15db3d525f1de972501f8b8?s=96&d=mm&r=g","caption":"admin-mbl"},"sameAs":["https:\/\/marabelia.com"]}]}},"_links":{"self":[{"href":"https:\/\/marabelia.com\/en\/wp-json\/wp\/v2\/posts\/14830","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/marabelia.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/marabelia.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/marabelia.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/marabelia.com\/en\/wp-json\/wp\/v2\/comments?post=14830"}],"version-history":[{"count":2,"href":"https:\/\/marabelia.com\/en\/wp-json\/wp\/v2\/posts\/14830\/revisions"}],"predecessor-version":[{"id":14832,"href":"https:\/\/marabelia.com\/en\/wp-json\/wp\/v2\/posts\/14830\/revisions\/14832"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/marabelia.com\/en\/wp-json\/wp\/v2\/media\/13358"}],"wp:attachment":[{"href":"https:\/\/marabelia.com\/en\/wp-json\/wp\/v2\/media?parent=14830"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/marabelia.com\/en\/wp-json\/wp\/v2\/categories?post=14830"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/marabelia.com\/en\/wp-json\/wp\/v2\/tags?post=14830"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}