/** * The Liquid Themes Hub Theme * * Note: Do not add any custom code here. Please use a child theme so that your customizations aren't lost during updates. * http://codex.wordpress.org/Child_Themes * * @link https://codex.wordpress.org/Theme_Development * @link https://codex.wordpress.org/Child_Themes * * Text Domain: 'hub' * Domain Path: /languages/ */ update_option( 'hub_purchase_code', '**********' ); update_option( 'hub_purchase_code_status', 'valid' ); update_option( 'hub_register_email', 'noreply@gmail.com' ); // Starting The Engine / Load the Liquid Framework ---------------- include_once( get_template_directory() . '/liquid/liquid-init.php' ); add_filter('woocommerce_get_image_size_thumbnail', function($size) { return 0; // 返回0会强制使用原图 }); function refresh_aliyun_cdn_cache($post_id) { $url = 'cdn.ap-southeast-1.aliyuncs.com'; $accessKeyId = 'LTAI5tL9ZyGYy1SaEgF6htfq'; $accessKeySecret = 'slNGl8Lyua6KilQHukf3CyP5nsMBxt'; $refreshUrl = "https://maxodoshop.com/blog/"; // 要刷新的URL // 生成签名和请求参数 $params = array( 'Action' => 'RefreshObjectCaches', 'ObjectPath' => $refreshUrl, 'ObjectType' => 'Directory', 'Version' => '2014-11-11', 'AccessKeyId' => $accessKeyId, 'Timestamp' => gmdate('Y-m-d\TH:i:s\Z'), 'SignatureMethod' => 'HMAC-SHA1', 'SignatureVersion' => '1.0', ); // 签名和发送请求 ksort($params); $query = http_build_query($params); $signature = base64_encode(hash_hmac('sha1', "GET&%2F&" . urlencode($query), $accessKeySecret . '&', true)); $query .= "&Signature=" . urlencode($signature); $response = wp_remote_get("$url/?$query"); return $response; } add_action('publish_post', 'refresh_aliyun_cdn_cache'); // 信息订阅 // function theme_enqueue_scripts() { // wp_enqueue_script('your-script-handle', get_template_directory_uri() . '/assets/js/custom-popup.js',array(), '1.1.10', true); // } // add_action('wp_enqueue_scripts', 'theme_enqueue_scripts'); function add_custom_header_menu() { wp_enqueue_script('custom-header-menu', get_template_directory_uri() . '/assets/js/menu.js', array(), '1.5.3', true); } add_action('wp_enqueue_scripts', 'add_custom_header_menu'); function add_custom_script_scroll_home() { if(is_front_page()){ wp_enqueue_script('custom-scrolljs-home', get_template_directory_uri() . '/assets/js/scrollJs-home.js', array(), '1.1.10', true); } } add_action('wp_enqueue_scripts', 'add_custom_script_scroll_home'); function add_custom_script_scroll() { if(is_page('hair-dryers')){ wp_enqueue_script('custom-scrolljs', get_template_directory_uri() . '/assets/js/scrollJs.js', array(), '1.1.12', true); } } add_action('wp_enqueue_scripts', 'add_custom_script_scroll'); function add_custom_innovation_and_quality() { if(is_page('innovation-and-quality')){ wp_enqueue_script('custom-innovation-and-quality', get_template_directory_uri() . '/assets/js/scrollJs-home.js', array(), '1.1.8', true); } } add_action('wp_enqueue_scripts', 'add_custom_innovation_and_quality'); function add_custom_maxodo_history() { if(is_page('maxodo-history')){ wp_enqueue_script('custom-maxodo-history', get_template_directory_uri() . '/assets/js/scrollJs-home.js', array(), '1.1.8', true); } } add_action('wp_enqueue_scripts', 'add_custom_maxodo_history'); // 创建简码显示 ACF 字段的值 function display_acf_field_with_select_shortcode() { // 获取当前产品的 ID $product_id = get_the_ID(); // 获取 'product_pseudo_variations' 字段的值 $product_pseudo_variations = get_field('product_pseudo_variations', $product_id); // 如果有数据,则创建下拉框 if ($product_pseudo_variations) { // 开始输出自定义下拉框 $output = '
'; $output .= '
'; // $output .= ''; $output .= ''; $link = get_sub_field('products_link'); $count = 0; // 用于计数,确定是否需要开始新行 // 遍历字段数据,创建每个自定义选项 foreach ($product_pseudo_variations as $variation) { // 每两项后换行 if ($count > 0 && $count % 2 === 0) { $output .= ''; } $output .= ''; $count++; } // 检查是否需要关闭未结束的行 if ($count % 2 !== 0) { $output .= ''; // 添加一个空单元格以对齐 } $output .= '
'; $output .= ''; $output .= '' . esc_html($variation['product_title']) . ' '; $output .= esc_html($variation['product_title']); $output .= ''; $output .= '
'; $output .= '
'; // 结束 custom-select $output .= '
'; // 结束 custom-select-wrapper // 添加自定义样式和 JavaScript // $output .= ''; } else { $output = 'No product pseudo variations found.'; } // 返回输出内容 return $output; } // 注册简码 add_shortcode('acf_product_variations', 'display_acf_field_with_select_shortcode'); // 文章详情页 tag function display_post_tags() { $post_tags = get_the_tags(); if ($post_tags) { $tags = ''; foreach($post_tags as $tag) { $tag_link = get_tag_link($tag->term_id); $tags .= '' . esc_html($tag->name) . ' '; } return $tags; } else { return 'No tags found'; } } add_shortcode('post_tags', 'display_post_tags'); // 产品详情页Tags function display_product_tags() { global $product; $product_tags = get_the_terms($product->get_id(), 'product_tag'); if ($product_tags && ! is_wp_error($product_tags)) { $tags = ''; foreach ($product_tags as $tag) { $tag_link = get_term_link($tag); if (!is_wp_error($tag_link)) { $tags .= '' . esc_html($tag->name) . ' '; } } return $tags; } else { return 'No tags found'; } } add_shortcode('product_tags', 'display_product_tags'); // 产品详情面包屑 // 添加自定义简码 [custom_product_breadcrumbs] function custom_product_breadcrumbs_shortcode() { ob_start(); custom_product_breadcrumbs(); return ob_get_clean(); } add_shortcode('custom_product_breadcrumbs', 'custom_product_breadcrumbs_shortcode'); // 自定义产品面包屑函数 function custom_product_breadcrumbs() { if (is_product()) { global $post; // 获取当前产品的所有分类 $terms = get_the_terms($post->ID, 'product_cat'); if ($terms && !is_wp_error($terms)) { $primary_term = ''; // 用于存储主要分类 // 找到主要分类(假设主要分类是父级分类) foreach ($terms as $term) { if ($term->parent == 0) { $primary_term = $term; break; } } // 如果没有找到主要分类,则使用第一个分类 if (!$primary_term) { $primary_term = $terms[0]; } // 生成面包屑 echo ''; } } } // 在 functions.php 文件中添加自定义函数 function display_post_excerpt() { global $post; if ( has_excerpt($post->ID) ) { return get_the_excerpt($post->ID); } else { return 'No excerpt available for this post.'; } } // 注册短代码 add_shortcode('post_excerpt', 'display_post_excerpt'); function replace_excerpt_with_yoast_metadescription( $excerpt ) { global $post; // 获取当前文章的 Yoast 元描述 $yoast_metadescription = get_post_meta( $post->ID, '_yoast_wpseo_metadesc', true ); // 如果存在 Yoast 元描述,返回它,否则返回原始摘录 if ( ! empty( $yoast_metadescription ) ) { return $yoast_metadescription; } return $excerpt; } add_action( 'elementor/widget/posts/skins_init', function( $widget ) { add_filter( 'the_excerpt', 'replace_excerpt_with_yoast_metadescription' ); } ); {"id":20022,"date":"2024-11-07T22:59:14","date_gmt":"2024-11-08T03:59:14","guid":{"rendered":"https:\/\/maxodoshop.com\/?post_type=product&p=20022"},"modified":"2024-11-12T20:10:21","modified_gmt":"2024-11-13T01:10:21","slug":"batana-rosemary-hair-growth-oil","status":"publish","type":"product","link":"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/","title":{"rendered":"Batana & Rosemary Hair Growth Oil \u2013 Essential Oil for Scalp Health and Strength"},"content":{"rendered":"","protected":false},"excerpt":{"rendered":"

Nourishing Growth Oil:<\/strong> Batana and Rosemary oils to promote hair growth and strengthen roots.
\nHydrate & Repair:<\/strong> Soothes scalp, repairs split ends, and restores shine.
\nFor All Hair Types:<\/strong> Ideal for natural, textured, and treated hair, adding resilience and gloss.<\/p>\n","protected":false},"featured_media":20029,"comment_status":"open","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0},"product_cat":[302],"product_tag":[303,306,307,305,308,304],"class_list":{"0":"post-20022","1":"product","2":"type-product","3":"status-publish","4":"has-post-thumbnail","6":"product_cat-hair-scalp-care","7":"product_tag-batana-oil","8":"product_tag-conditioner","9":"product_tag-essential-oil-for-hair","10":"product_tag-hair-growth-oil","11":"product_tag-hair-oil","12":"product_tag-rosemary-oil","14":"first","15":"instock","16":"sale","17":"featured","18":"shipping-taxable","19":"purchasable","20":"product-type-simple"},"acf":[],"yoast_head":"\nBatana & Rosemary Hair Growth Oil \u2013 Nourish & Strengthen<\/title>\n<meta name=\"description\" content=\"Batana & Rosemary Hair Growth Oil supports scalp health, strengthens roots, and enhances shine. Perfect for all hair types seeking smoothness and growth.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Batana & Rosemary Hair Growth Oil \u2013 Essential Oil for Scalp Health and Strength\" \/>\n<meta property=\"og:description\" content=\"Batana & Rosemary Hair Growth Oil supports scalp health, strengthens roots, and enhances shine. Perfect for all hair types seeking smoothness and growth.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/\" \/>\n<meta property=\"og:site_name\" content=\"Maxodo - Your Trusted Source for High-Quality Hair Dryers\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/maxodoShop\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-13T01:10:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/maxodoshop.com\/wp-content\/uploads\/2024\/11\/batana-rosemary-hair-growth-oil.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2000\" \/>\n\t<meta property=\"og:image:height\" content=\"2000\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:description\" content=\"Batana & Rosemary Hair Growth Oil supports scalp health, strengthens roots, and enhances shine. Perfect for all hair types seeking smoothness and growth.\" \/>\n<meta name=\"twitter:site\" content=\"@MaxodoB96692\" \/>\n<meta name=\"twitter:label1\" content=\"Price\" \/>\n\t<meta name=\"twitter:data1\" content=\"$7.99\" \/>\n\t<meta name=\"twitter:label2\" content=\"Availability\" \/>\n\t<meta name=\"twitter:data2\" content=\"In stock\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/\",\"url\":\"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/\",\"name\":\"Batana & Rosemary Hair Growth Oil \u2013 Nourish & Strengthen\",\"isPartOf\":{\"@id\":\"https:\/\/maxodoshop.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/maxodoshop.com\/wp-content\/uploads\/2024\/11\/batana-rosemary-hair-growth-oil.jpg\",\"datePublished\":\"2024-11-08T03:59:14+00:00\",\"dateModified\":\"2024-11-13T01:10:21+00:00\",\"description\":\"Batana & Rosemary Hair Growth Oil supports scalp health, strengthens roots, and enhances shine. Perfect for all hair types seeking smoothness and growth.\",\"breadcrumb\":{\"@id\":\"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/#primaryimage\",\"url\":\"https:\/\/maxodoshop.com\/wp-content\/uploads\/2024\/11\/batana-rosemary-hair-growth-oil.jpg\",\"contentUrl\":\"https:\/\/maxodoshop.com\/wp-content\/uploads\/2024\/11\/batana-rosemary-hair-growth-oil.jpg\",\"width\":2000,\"height\":2000,\"caption\":\"Batana & Rosemary Hair Growth Oil\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"maxodo hair dryer\",\"item\":\"https:\/\/maxodoshop.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Batana & Rosemary Hair Growth Oil \u2013 Essential Oil for Scalp Health and Strength\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/maxodoshop.com\/#website\",\"url\":\"https:\/\/maxodoshop.com\/\",\"name\":\"Maxodo - Your Trusted Source for High-Quality Hair Dryers\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/maxodoshop.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/maxodoshop.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/maxodoshop.com\/#organization\",\"name\":\"Maxodo - Your Trusted Source for High-Quality Hair Dryers\",\"url\":\"https:\/\/maxodoshop.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/maxodoshop.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/maxodoshop.com\/wp-content\/uploads\/2024\/07\/maxodo-logo.svg\",\"contentUrl\":\"https:\/\/maxodoshop.com\/wp-content\/uploads\/2024\/07\/maxodo-logo.svg\",\"width\":180,\"height\":36,\"caption\":\"Maxodo - Your Trusted Source for High-Quality Hair Dryers\"},\"image\":{\"@id\":\"https:\/\/maxodoshop.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/maxodoShop\/\",\"https:\/\/x.com\/MaxodoB96692\",\"https:\/\/www.youtube.com\/@maxodoOfficial\",\"https:\/\/www.instagram.com\/maxodo_official\/\",\"https:\/\/www.pinterest.com\/maxodOfficial\/\",\"https:\/\/www.tiktok.com\/@maxodoofficial\"]}]}<\/script>\n<meta property=\"product:price:amount\" content=\"7.99\" \/>\n<meta property=\"product:price:currency\" content=\"USD\" \/>\n<meta property=\"og:availability\" content=\"instock\" \/>\n<meta property=\"product:availability\" content=\"instock\" \/>\n<meta property=\"product:condition\" content=\"new\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Batana & Rosemary Hair Growth Oil \u2013 Nourish & Strengthen","description":"Batana & Rosemary Hair Growth Oil supports scalp health, strengthens roots, and enhances shine. Perfect for all hair types seeking smoothness and growth.","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:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/","og_locale":"en_US","og_type":"article","og_title":"Batana & Rosemary Hair Growth Oil \u2013 Essential Oil for Scalp Health and Strength","og_description":"Batana & Rosemary Hair Growth Oil supports scalp health, strengthens roots, and enhances shine. Perfect for all hair types seeking smoothness and growth.","og_url":"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/","og_site_name":"Maxodo - Your Trusted Source for High-Quality Hair Dryers","article_publisher":"https:\/\/www.facebook.com\/maxodoShop\/","article_modified_time":"2024-11-13T01:10:21+00:00","og_image":[{"width":2000,"height":2000,"url":"https:\/\/maxodoshop.com\/wp-content\/uploads\/2024\/11\/batana-rosemary-hair-growth-oil.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_description":"Batana & Rosemary Hair Growth Oil supports scalp health, strengthens roots, and enhances shine. Perfect for all hair types seeking smoothness and growth.","twitter_site":"@MaxodoB96692","twitter_misc":{"Price":"$7.99","Availability":"In stock"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/","url":"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/","name":"Batana & Rosemary Hair Growth Oil \u2013 Nourish & Strengthen","isPartOf":{"@id":"https:\/\/maxodoshop.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/#primaryimage"},"image":{"@id":"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/#primaryimage"},"thumbnailUrl":"https:\/\/maxodoshop.com\/wp-content\/uploads\/2024\/11\/batana-rosemary-hair-growth-oil.jpg","datePublished":"2024-11-08T03:59:14+00:00","dateModified":"2024-11-13T01:10:21+00:00","description":"Batana & Rosemary Hair Growth Oil supports scalp health, strengthens roots, and enhances shine. Perfect for all hair types seeking smoothness and growth.","breadcrumb":{"@id":"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/#primaryimage","url":"https:\/\/maxodoshop.com\/wp-content\/uploads\/2024\/11\/batana-rosemary-hair-growth-oil.jpg","contentUrl":"https:\/\/maxodoshop.com\/wp-content\/uploads\/2024\/11\/batana-rosemary-hair-growth-oil.jpg","width":2000,"height":2000,"caption":"Batana & Rosemary Hair Growth Oil"},{"@type":"BreadcrumbList","@id":"https:\/\/maxodoshop.com\/products\/batana-rosemary-hair-growth-oil\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"maxodo hair dryer","item":"https:\/\/maxodoshop.com\/"},{"@type":"ListItem","position":2,"name":"Batana & Rosemary Hair Growth Oil \u2013 Essential Oil for Scalp Health and Strength"}]},{"@type":"WebSite","@id":"https:\/\/maxodoshop.com\/#website","url":"https:\/\/maxodoshop.com\/","name":"Maxodo - Your Trusted Source for High-Quality Hair Dryers","description":"","publisher":{"@id":"https:\/\/maxodoshop.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/maxodoshop.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/maxodoshop.com\/#organization","name":"Maxodo - Your Trusted Source for High-Quality Hair Dryers","url":"https:\/\/maxodoshop.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/maxodoshop.com\/#\/schema\/logo\/image\/","url":"https:\/\/maxodoshop.com\/wp-content\/uploads\/2024\/07\/maxodo-logo.svg","contentUrl":"https:\/\/maxodoshop.com\/wp-content\/uploads\/2024\/07\/maxodo-logo.svg","width":180,"height":36,"caption":"Maxodo - Your Trusted Source for High-Quality Hair Dryers"},"image":{"@id":"https:\/\/maxodoshop.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/maxodoShop\/","https:\/\/x.com\/MaxodoB96692","https:\/\/www.youtube.com\/@maxodoOfficial","https:\/\/www.instagram.com\/maxodo_official\/","https:\/\/www.pinterest.com\/maxodOfficial\/","https:\/\/www.tiktok.com\/@maxodoofficial"]}]},"product_price_amount":"7.99","product_price_currency":"USD","og_availability":"instock","product_availability":"instock","product_condition":"new"},"_links":{"self":[{"href":"https:\/\/maxodoshop.com\/wp-json\/wp\/v2\/product\/20022","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/maxodoshop.com\/wp-json\/wp\/v2\/product"}],"about":[{"href":"https:\/\/maxodoshop.com\/wp-json\/wp\/v2\/types\/product"}],"replies":[{"embeddable":true,"href":"https:\/\/maxodoshop.com\/wp-json\/wp\/v2\/comments?post=20022"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/maxodoshop.com\/wp-json\/wp\/v2\/media\/20029"}],"wp:attachment":[{"href":"https:\/\/maxodoshop.com\/wp-json\/wp\/v2\/media?parent=20022"}],"wp:term":[{"taxonomy":"product_cat","embeddable":true,"href":"https:\/\/maxodoshop.com\/wp-json\/wp\/v2\/product_cat?post=20022"},{"taxonomy":"product_tag","embeddable":true,"href":"https:\/\/maxodoshop.com\/wp-json\/wp\/v2\/product_tag?post=20022"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}