{"id":5068,"date":"2019-02-14T01:20:23","date_gmt":"2019-02-13T23:20:23","guid":{"rendered":"https:\/\/www.mjcachon.com\/?p=5068"},"modified":"2022-01-18T17:39:01","modified_gmt":"2022-01-18T15:39:01","slug":"expresiones-xpath-seo","status":"publish","type":"post","link":"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/","title":{"rendered":"Expresiones Xpath para SEO"},"content":{"rendered":"<p>En el post de hoy voy a recopilar una serie de expresiones Xpath que podr\u00edamos usar en Screaming Frog, pero tambi\u00e9n podr\u00edan utilizarse en Google Spreadsheets (con la funci\u00f3n ImportXml).<br \/>Antes de empezar con\u00a0usos concretos, vamos a adentrarnos en entender los elementos que podemos usar para construir las expresiones.<\/p>\n<h2>Empezando con Xpath<\/h2>\n<p>El <a href=\"https:\/\/www.w3schools.com\/xml\/xpath_intro.asp\" target=\"_blank\" rel=\"noopener noreferrer\">tutorial<\/a> y la <a href=\"https:\/\/www.w3schools.com\/xml\/xpath_syntax.asp\" target=\"_blank\" rel=\"noopener noreferrer\">sintaxis<\/a> de Xpath, son de gran utilidad para empezar a practicar. A modo de resumen introductorio:<\/p>\n<table class=\"table table-striped d-inline-block\">\n<thead>\n<tr>\n<td width=\"257\"><strong>\u00bfQu\u00e9 extrae?<\/strong><\/td>\n<td width=\"104\"><strong>Expresi\u00f3n XPath<\/strong><\/td>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td width=\"257\">Nodo actual<\/td>\n<td width=\"104\">\n<p style=\"text-align: center;\">.<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"257\">Padre del nodo actual<\/td>\n<td width=\"104\">\n<p style=\"text-align: center;\">..<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"257\">Atributo<\/td>\n<td width=\"104\">\n<p style=\"text-align: center;\">@<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"257\">Comod\u00edn: cualquier elemento<\/td>\n<td width=\"104\">\n<p style=\"text-align: center;\">*<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"257\">Comod\u00edn: cualquier atributo<\/td>\n<td width=\"104\">\n<p style=\"text-align: center;\">@*<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"257\">Nodo que contiene un valor espec\u00edfico<\/td>\n<td width=\"104\">\n<p style=\"text-align: center;\">[ ]<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"257\">Funciona como \u201cO\u201d, usando varias rutas<\/td>\n<td width=\"104\">\n<p style=\"text-align: center;\">|<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Otras funciones a tener en cuenta para construir expresiones m\u00e1s robustas:<\/p>\n<table style=\"height: 322px;\" width=\"565\">\n<tbody>\n<tr>\n<td width=\"292\"><strong>\u00bfQu\u00e9 hace?<\/strong><\/td>\n<td width=\"226\"><strong>Nombre de la funci\u00f3n<\/strong><\/td>\n<\/tr>\n<tr>\n<td width=\"292\">Para contar elementos con el criterio que queramos<\/td>\n<td width=\"226\">\n<p style=\"text-align: center;\">Count()<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"292\">Para localizar elementos que contengan lo que queramos<\/td>\n<td width=\"226\">\n<p style=\"text-align: center;\">Contains()<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td width=\"292\">Para localizar elementos que empiezan por lo que queramos<\/td>\n<td width=\"226\">\n<p style=\"text-align: center;\">Start-with()<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Xpath espec\u00edficas para SEO on page<\/h2>\n<p>Las cosas m\u00e1s habituales que podemos extraer,\u00a0usando expresiones sencillas y combinando algunas de las mencionadas:<\/p>\n<table style=\"height: 1045px;\" width=\"567\">\n<tbody>\n<tr>\n<td width=\"251\"><strong>\u00bfQu\u00e9 extrae?<\/strong><\/td>\n<td width=\"294\"><strong>Expresi\u00f3n XPath<\/strong><\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Title<\/td>\n<td width=\"294\">\/\/title<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Meta Description<\/td>\n<td width=\"294\">\/\/meta[@name=&#8217;description&#8217;]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">URL AMP<\/td>\n<td width=\"294\">\/\/link[@rel=&#8217;amphtml&#8217;]\/@href<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Keywords News<\/td>\n<td width=\"294\">\/\/meta[@name=&#8217;news_keywords&#8217;]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Canonical URL<\/td>\n<td width=\"294\">\/\/link[@rel=&#8217;canonical&#8217;]\/@href<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Meta Robots<\/td>\n<td width=\"294\">\/\/meta[@name=&#8217;robots&#8217;]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">H1<\/td>\n<td width=\"294\">\/\/h1<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">H2<\/td>\n<td width=\"294\">\/\/h2<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">H3<\/td>\n<td width=\"294\">\/\/h3<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Alt text<\/td>\n<td width=\"294\">\/\/img\/@alt<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Im\u00e1genes sin alt text<\/td>\n<td width=\"294\">\/\/img[not(@alt)]\/@src<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Localizaci\u00f3n de la imagen<\/td>\n<td width=\"294\">\/\/img[@alt]\/@src<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Anchor text<\/td>\n<td width=\"294\">\/\/a\/text()<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Anchor text (incluyendo alt text)<\/td>\n<td width=\"294\">(\/\/a\/text() | \/\/a\/img\/@alt)<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Todos los links del documento<\/td>\n<td width=\"294\">\/\/@href<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Xpath espec\u00edficas para\u00a0Hreflang<\/h2>\n<p>Combinando lo aprendido hasta ahora, podr\u00edamos tener distintos objetivos de extracci\u00f3n y querer valores, htmls completos o contar las repeticiones que existen de un elemento concreto.<\/p>\n<table style=\"height: 252px;\" width=\"574\">\n<tbody>\n<tr>\n<td width=\"251\"><strong>\u00bfQu\u00e9 extrae?<\/strong><\/td>\n<td width=\"294\"><strong>Expresi\u00f3n XPath<\/strong><\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Todos los elementos hreflang<\/td>\n<td width=\"294\">\/\/*[@hreflang]<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Valores de hreflang<\/td>\n<td width=\"294\">\/\/*[@hreflang]\/@hreflang<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Contar todos los hreflang<\/td>\n<td width=\"294\">count(\/\/link\/@hreflang)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Xpath espec\u00edficas para\u00a0Schema<\/h2>\n<p>Si nos centramos en los datos estructurados con Schema, podemos tambi\u00e9n extraer el status de marcado de nuestra web o de competidores usando estas expresiones.<\/p>\n<table style=\"height: 809px;\" width=\"576\">\n<tbody>\n<tr>\n<td width=\"251\"><strong>\u00bfQu\u00e9 extrae?<\/strong><\/td>\n<td width=\"294\"><strong>Expresi\u00f3n XPath<\/strong><\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Tipo de schema<\/td>\n<td width=\"294\">\/\/*[@itemtype]\/@itemtype<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Contenido del json-ld<\/td>\n<td width=\"294\">\/\/script[@type=\u00bbapplication\/ld+json\u00bb]<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Schema Price<\/td>\n<td width=\"294\">\/\/meta[@itemprop=&#8217;price&#8217;]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Schema Image<\/td>\n<td width=\"294\">\/\/meta[@itemprop=&#8217;image&#8217;]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Schema Name<\/td>\n<td width=\"294\">\/\/h1[@itemprop=&#8217;name&#8217;]<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Schema Product ID<\/td>\n<td width=\"294\">\/\/header[@itemprop=&#8217;productId&#8217;]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Schema Stock Status<\/td>\n<td width=\"294\">\/\/meta[@itemprop=&#8217;availability&#8217;]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Direcci\u00f3n<\/td>\n<td width=\"294\">\/\/span[@itemprop=&#8217;streetAddress&#8217;]<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Localidad<\/td>\n<td width=\"294\">\/\/span[@itemprop=&#8217;addressLocality&#8217;]<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Regi\u00f3n<\/td>\n<td width=\"294\">\/\/span[@itemprop=&#8217;addressRegion&#8217;]<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Valor de los ratings<\/td>\n<td width=\"294\">\/\/span[@itemprop=&#8217;ratingValue&#8217;]<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Recuento de ratings<\/td>\n<td width=\"294\">\/\/span[@itemprop=&#8217;reviewCount&#8217;]<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Xpath espec\u00edficas para\u00a0Open Graph y Twitter Cards<\/h2>\n<p>Si nos queremos centrar en profundizar el marcado de etiquetado social, tambi\u00e9n podemos hacerlo usando expresiones centradas en etiquetas Open Graph o Twitter Cards.<\/p>\n<table style=\"height: 752px;\" width=\"578\">\n<tbody>\n<tr>\n<td width=\"251\"><strong>\u00bfQu\u00e9 extrae?<\/strong><\/td>\n<td width=\"294\"><strong>Expresi\u00f3n XPath<\/strong><\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Title OG<\/td>\n<td width=\"294\">\/\/meta[starts-with(@property, &#8216;og:title&#8217;)]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Description OG<\/td>\n<td width=\"294\">\/\/meta[starts-with(@property, &#8216;og:description&#8217;)]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Type OG<\/td>\n<td width=\"294\">\/\/meta[starts-with(@property, &#8216;og:type&#8217;)]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Imagen OG<\/td>\n<td width=\"294\">\/\/meta[starts-with(@property, &#8216;og:image&#8217;)]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">URL OG<\/td>\n<td width=\"294\">\/\/meta[starts-with(@property, &#8216;og:url&#8217;)]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Url Twitter Card<\/td>\n<td width=\"294\">\/\/meta[starts-with(@property, &#8216;twitter:title&#8217;)]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Description Twitter Card<\/td>\n<td width=\"294\">\/\/meta[starts-with(@property, &#8216;twitter:description&#8217;)]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"251\">Imagen Twitter Card<\/td>\n<td width=\"294\">\/\/meta[starts-with(@property, &#8216;twitter:image:src&#8217;)]\/@content<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Xpath espec\u00edficas para\u00a0otros usos variados<\/h2>\n<p>\u00a0<br \/>Y para cerrar el post, algunas otras expresiones que podr\u00edamos usar para otros cometidos m\u00e1s variados<\/p>\n<table style=\"height: 1034px;\" width=\"581\">\n<tbody>\n<tr>\n<td width=\"285\"><strong>\u00bfQu\u00e9 extrae?<\/strong><\/td>\n<td width=\"260\"><strong>Expresi\u00f3n XPath<\/strong><\/td>\n<\/tr>\n<tr>\n<td width=\"285\">Cualquier elemento cuya clase se llame \u00abejemplo\u00bb<\/td>\n<td width=\"260\">\/\/*[@class=&#8217;ejemplo&#8217;]<\/td>\n<\/tr>\n<tr>\n<td width=\"285\">Span que est\u00e9n dentro de un div<\/td>\n<td width=\"260\">\/\/div\/span<\/td>\n<\/tr>\n<tr>\n<td width=\"285\">Primer elemento de una lista no ordenada<\/td>\n<td width=\"260\">\/\/ul\/li[1]<\/td>\n<\/tr>\n<tr>\n<td width=\"285\">\u00daltimo elemento de una lista no ordenada<\/td>\n<td width=\"260\">\/\/ul\/li[last()]<\/td>\n<\/tr>\n<tr>\n<td width=\"285\">Elementos de una lista no ordenada llamada \u00abejemplo\u00bb<\/td>\n<td width=\"260\">\/\/ul[@class=&#8217;ejemplo&#8217;]\/li<\/td>\n<\/tr>\n<tr>\n<td width=\"285\">Enlaces con el texto ancla \u00abver m\u00e1s\u00bb<\/td>\n<td width=\"260\">\/\/a[contains(.,&#8217;ver m\u00e1s&#8217;)]\/@href<\/td>\n<\/tr>\n<tr>\n<td width=\"285\">Extraer emails<\/td>\n<td width=\"260\">\/\/a[starts-with(@href, &#8216;mailto&#8217;)]<\/td>\n<\/tr>\n<tr>\n<td width=\"285\">Contar todos los elementos h3<\/td>\n<td width=\"260\">count(\/\/h3)<\/td>\n<\/tr>\n<tr>\n<td width=\"285\">Contar todos los canonical<\/td>\n<td width=\"260\">count(\/\/link[@rel=\u2019canonical\u2019])<\/td>\n<\/tr>\n<tr>\n<td width=\"285\">Extraer la etiqueta de verificaci\u00f3n de Google Search Console<\/td>\n<td width=\"260\">\/\/meta[@name=&#8217;google-site-verification&#8217;]\/@content<\/td>\n<\/tr>\n<tr>\n<td width=\"285\">Iframe<\/td>\n<td width=\"260\">\/\/iframe\/@src<\/td>\n<\/tr>\n<tr>\n<td width=\"285\">Los iframes de youtube<\/td>\n<td width=\"260\">\/\/iframe[contains(@src ,&#8217;www.youtube.com\/embed\/&#8217;)]<\/td>\n<\/tr>\n<tr>\n<td width=\"285\">Anotaci\u00f3n Mobile<\/td>\n<td width=\"260\">\/\/link[contains(@media, &#8216;640&#8217;) and @href]\/@href<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Deja tu comentario si se te ocurre alg\u00fan otro que pueda ser \u00fatil<\/p>\n<p>Si quieres ver usos avanzados, descubre la charla Experiente X(path) impartida en SEOnderground<\/p>\n<p><br \/>\u00a0<\/p>\n\n\n<iframe src=\"\/\/www.slideshare.net\/slideshow\/embed_code\/key\/FUryVyoQhXOYxY\" width=\"595\" height=\"485\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" style=\"border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;\" allowfullscreen> <\/iframe> <div style=\"margin-bottom:5px\"> <strong> <a href=\"\/\/www.slideshare.net\/mjcachon\/expediente-xpath-seonderground-2021\" title=\"Expediente Xpath #SEOnderground 2021\" target=\"_blank\" rel=\"noopener\">Expediente Xpath #SEOnderground 2021<\/a> <\/strong> from <strong><a href=\"\/\/www.slideshare.net\/mjcachon\" target=\"_blank\" rel=\"noopener\">MJ Cach\u00f3n Y\u00e1\u00f1ez<\/a><\/strong> <\/div>\n","protected":false},"excerpt":{"rendered":"<p>En el post de hoy voy a recopilar una serie de expresiones Xpath que podr\u00edamos usar en Screaming Frog, pero tambi\u00e9n podr\u00edan utilizarse en Google Spreadsheets (con la funci\u00f3n ImportXml).Antes de empezar con\u00a0usos concretos, vamos a adentrarnos en entender los elementos que podemos usar para construir las expresiones. Empezando con Xpath El tutorial y la<\/p>\n","protected":false},"author":2,"featured_media":6467,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[2],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v16.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Expresiones Xpath para SEO - LaikaTeam<\/title>\n<meta name=\"description\" content=\"Recopilaci\u00f3n de expresiones Xpath listas para usar en extracciones de datos en proyectos SEO y para prospecci\u00f3n de competidores\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Expresiones Xpath para SEO - LaikaTeam\" \/>\n<meta property=\"og:description\" content=\"Recopilaci\u00f3n de expresiones Xpath listas para usar en extracciones de datos en proyectos SEO y para prospecci\u00f3n de competidores\" \/>\n<meta property=\"og:url\" content=\"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/\" \/>\n<meta property=\"og:site_name\" content=\"LaikaTeam\" \/>\n<meta property=\"article:published_time\" content=\"2019-02-13T23:20:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-01-18T15:39:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/laikateam.com\/blog\/wp-content\/uploads\/2019\/02\/xpath-seo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@laikateam_es\" \/>\n<meta name=\"twitter:site\" content=\"@laikateam_es\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/laikateam.com\/blog\/#organization\",\"name\":\"Laika\",\"url\":\"https:\/\/laikateam.com\/blog\/\",\"sameAs\":[\"https:\/\/www.instagram.com\/laika_team\",\"https:\/\/www.linkedin.com\/company\/laika-team\/\",\"https:\/\/twitter.com\/laikateam_es\"],\"logo\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/laikateam.com\/blog\/#logo\",\"inLanguage\":\"es\",\"url\":\"https:\/\/laikateam.com\/blog\/wp-content\/uploads\/2021\/06\/logo-laika.png\",\"contentUrl\":\"https:\/\/laikateam.com\/blog\/wp-content\/uploads\/2021\/06\/logo-laika.png\",\"width\":318,\"height\":350,\"caption\":\"Laika\"},\"image\":{\"@id\":\"https:\/\/laikateam.com\/blog\/#logo\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/laikateam.com\/blog\/#website\",\"url\":\"https:\/\/laikateam.com\/blog\/\",\"name\":\"LaikaTeam\",\"description\":\"Strategic &amp; SEO Consulting\",\"publisher\":{\"@id\":\"https:\/\/laikateam.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":\"https:\/\/laikateam.com\/blog\/?s={search_term_string}\",\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"es\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/#primaryimage\",\"inLanguage\":\"es\",\"url\":\"https:\/\/laikateam.com\/blog\/wp-content\/uploads\/2019\/02\/xpath-seo.jpg\",\"contentUrl\":\"https:\/\/laikateam.com\/blog\/wp-content\/uploads\/2019\/02\/xpath-seo.jpg\",\"width\":1920,\"height\":1080},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/#webpage\",\"url\":\"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/\",\"name\":\"Expresiones Xpath para SEO - LaikaTeam\",\"isPartOf\":{\"@id\":\"https:\/\/laikateam.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/#primaryimage\"},\"datePublished\":\"2019-02-13T23:20:23+00:00\",\"dateModified\":\"2022-01-18T15:39:01+00:00\",\"description\":\"Recopilaci\\u00f3n de expresiones Xpath listas para usar en extracciones de datos en proyectos SEO y para prospecci\\u00f3n de competidores\",\"breadcrumb\":{\"@id\":\"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/laikateam.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Expresiones Xpath para SEO\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/#webpage\"},\"author\":{\"@id\":\"https:\/\/laikateam.com\/blog\/#\/schema\/person\/57bc6c6ac096e3437e2261bf39255923\"},\"headline\":\"Expresiones Xpath para SEO\",\"datePublished\":\"2019-02-13T23:20:23+00:00\",\"dateModified\":\"2022-01-18T15:39:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/#webpage\"},\"wordCount\":731,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/laikateam.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/laikateam.com\/blog\/wp-content\/uploads\/2019\/02\/xpath-seo.jpg\",\"articleSection\":[\"SEO\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/laikateam.com\/blog\/expresiones-xpath-seo\/#respond\"]}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/laikateam.com\/blog\/#\/schema\/person\/57bc6c6ac096e3437e2261bf39255923\",\"name\":\"MJ Cachon\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/laikateam.com\/blog\/#personlogo\",\"inLanguage\":\"es\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4f93a22677b533182414d91829674844?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4f93a22677b533182414d91829674844?s=96&d=mm&r=g\",\"caption\":\"MJ Cachon\"},\"sameAs\":[\"https:\/\/www.laikateam.com\/\"],\"url\":\"https:\/\/laikateam.com\/blog\/author\/mj-cachon\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","_links":{"self":[{"href":"https:\/\/laikateam.com\/blog\/wp-json\/wp\/v2\/posts\/5068"}],"collection":[{"href":"https:\/\/laikateam.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/laikateam.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/laikateam.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/laikateam.com\/blog\/wp-json\/wp\/v2\/comments?post=5068"}],"version-history":[{"count":8,"href":"https:\/\/laikateam.com\/blog\/wp-json\/wp\/v2\/posts\/5068\/revisions"}],"predecessor-version":[{"id":6700,"href":"https:\/\/laikateam.com\/blog\/wp-json\/wp\/v2\/posts\/5068\/revisions\/6700"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/laikateam.com\/blog\/wp-json\/wp\/v2\/media\/6467"}],"wp:attachment":[{"href":"https:\/\/laikateam.com\/blog\/wp-json\/wp\/v2\/media?parent=5068"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/laikateam.com\/blog\/wp-json\/wp\/v2\/categories?post=5068"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/laikateam.com\/blog\/wp-json\/wp\/v2\/tags?post=5068"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}