{"id":8367,"date":"2018-05-13T14:15:59","date_gmt":"2018-05-13T14:15:59","guid":{"rendered":"https:\/\/kriesi.at\/documentation\/enfold\/?p=8367"},"modified":"2023-08-03T11:34:50","modified_gmt":"2023-08-03T11:34:50","slug":"search","status":"publish","type":"post","link":"https:\/\/kriesi.at\/documentation\/enfold\/search\/","title":{"rendered":"Search"},"content":{"rendered":"\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-2dsqq7-7c21c24cc3aed1d7f5a3dbf13f1552dc\">\n#top .av-special-heading.av-2dsqq7-7c21c24cc3aed1d7f5a3dbf13f1552dc{\npadding-bottom:10px;\n}\nbody .av-special-heading.av-2dsqq7-7c21c24cc3aed1d7f5a3dbf13f1552dc .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-2dsqq7-7c21c24cc3aed1d7f5a3dbf13f1552dc .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-2dsqq7-7c21c24cc3aed1d7f5a3dbf13f1552dc av-special-heading-h2 blockquote modern-quote  avia-builder-el-0  el_before_av_hr  avia-builder-el-first '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >Search<\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div>\n<div  class='hr av-2mfmqzk-ef5fbd57ecac4e4eedc4da50f285ed79 hr-default  avia-builder-el-1  el_after_av_heading  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-304k5v4-19335ec25618a6a3f301e1ff83fad7b0 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><h3>Polylang Ajax Search Filter<\/h3>\n<\/div><\/section>\n<section  class='av_textblock_section av-304k5v4-14-957855e00364319ed5ec57346ad42787 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p>This is a Code snippet for <a href=\"https:\/\/wordpress.org\/plugins\/polylang\/\">polylang plugin<\/a> users who want to filter the search results in the ajax search based on the current language. Add this to your themes or child themes function.php file<\/p>\n<pre><code>\/**\r\n * Ajax Search Query\r\n *\/\r\n \r\nadd_filter('avf_ajax_search_query', 'avf_modify_ajax_search_query', 10, 1);\r\nfunction avf_modify_ajax_search_query($search_parameters)\r\n{\r\n$language = pll_current_language();\r\nparse_str($search_parameters, $params);\r\n$params['lang'] = $language;\r\n$search_parameters = http_build_query($params);\r\nreturn $search_parameters;\r\n}<\/code><\/pre>\n<p><a href=\"http:\/\/www.kriesi.at\/support\/topic\/all-languages-in-search-result\/\">* Forum reference<\/a><\/p>\n<\/div><\/section>\n<div  class='hr av-2mfmqzk-15-d5631350e114ef7574abd5917c7684f1 hr-default  avia-builder-el-4  el_after_av_textblock  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-304k5v4-13-270c553ec63b2de876096c19bb2acf51 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><h3>Use SearchWP instead of the standard search<\/h3>\n<\/div><\/section>\n<section  class='av_textblock_section av-304k5v4-11-e13ad405d61f8f90500e0bde86ee2ce9 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><a title=\"SearchWP\" href=\"http:\/\/inoplugs.com\/searchwp\" target=\"_blank\" rel=\"noopener\">SearchWP<\/a> is an advanced search engine for WordPress. You can use it with Enfold without any additional configuration. If you want to use it with the ajax search function (preview search results when you click on the magnifier icon) then insert this code into the child theme functions.php file or into the enfold\/functions.php file:<\/p>\n<pre><code>\/\/ **********************************************************************\/\/\r\n\/\/ Enfold Search WP integration                                          *\/\r\n\/\/ **********************************************************************\/\/\r\nadd_filter( 'avf_ajax_search_function', 'avia_init_searchwp', 10, 4 );\r\n\r\nfunction avia_init_searchwp( $function_name, $search_query, $search_parameters, $defaults ) {\r\n\t$function_name = class_exists( 'SWP_Query' ) ? 'avia_searchwp_search' : $function_name;\r\n\treturn $function_name;\r\n}\r\n\r\nfunction avia_searchwp_search( $search_query, $search_parameters, $defaults ) {\r\n\t$searchwp_query = new SWP_Query( array(\r\n\t\t'engine'         =&gt; 'default',\r\n\t\t's'              =&gt; isset( $search_parameters['s'] ) ? sanitize_text_field( urldecode( $search_parameters['s'] ) ) : '',\r\n\t\t'posts_per_page' =&gt; 5,\r\n\t\t'fields'         =&gt; 'ids',\r\n\t) );\r\n\r\n\tif ( ! empty( $searchwp_query-&gt;posts ) ) {\r\n\t\tforeach ( $searchwp_query-&gt;posts as $key =&gt; $result ) {\r\n\t\t\t$searchwp_query-&gt;posts[ $key ] = get_post( $result );\r\n\t\t\t$searchwp_query-&gt;posts[ $key ]-&gt;post_excerpt = get_the_excerpt( $result );\r\n\t\t}\r\n\t}\r\n\r\n\treturn $searchwp_query-&gt;posts;\r\n}\r\n<\/code><\/pre>\n<\/div><\/section>\n<div  class='hr av-2mfmqzk-12-2406ac162a28342fe443390fbd1a7cec hr-default  avia-builder-el-7  el_after_av_textblock  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-304k5v4-10-c0de326f602ad3f3cc5da686c856fe45 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><h3>Use Relevanssi in search instead of the default search<\/h3>\n<\/div><\/section>\n<section  class='av_textblock_section av-304k5v4-8-7edc8a705f0ccc362036454a3efc3d23 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><strong>Since Enfold version 4.5.7.1 Relevanssi ajax search is supported by the theme in the core.<\/strong><\/p>\n<p>The below code is no longer required to add the Relevanssi support to your enfold theme. Please remove from your functions.php file if you have added it to the earlier version of the enfold theme.<\/p>\n<pre><code>add_filter('avf_ajax_search_function', 'avia_init_relevanssi', 10, 4);\r\nfunction avia_init_relevanssi($function_name, $search_query, $search_parameters, $defaults)\r\n{\r\n    $function_name = 'avia_relevanssi_search';\r\n    return $function_name;\r\n}\r\n\r\nfunction avia_relevanssi_search($search_query, $search_parameters, $defaults)\r\n{\r\n    global $query;\r\n    $tempquery = $query;\r\n    if(empty($tempquery)) $tempquery = new WP_Query();\r\n\r\n    $tempquery-&gt;query_vars = $search_parameters;\r\n    relevanssi_do_query($tempquery);\r\n    $posts = $tempquery-&gt;posts;\r\n\r\n    return $posts;\r\n}<\/code><\/pre>\n<\/div><\/section>\n<div  class='hr av-1uuq9b-85f23af0943265b1427080d0f00afbfd hr-default  avia-builder-el-10  el_after_av_textblock  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-lkv0rhzp-335e62e7321551a79b9fff0df096e45f '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><h3>Limit Relevanssi Search Results in the Instant Search (Ajax Dropdown)<\/h3>\n<\/div><\/section>\n<section  class='av_textblock_section av-lkv0qiyg-a5f9718adcc838f4430523841d0fec51 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p>Please add the following code to the bottom of Functions.php file of your <a href=\"https:\/\/kriesi.at\/documentation\/enfold\/child-theme\/\">child theme<\/a> limit the search results displayed in the instant search (or ajax dropdown) when using Relevanssi:<\/p>\n<pre><code>\r\n\/**\r\n * Change default ajax search results when using relevanssi\r\n *\r\n * @link https:\/\/kriesi.at\/support\/topic\/enfold-relevanssi-ajax-dropdown-limit\/\r\n *\r\n * @since 5.6.6\r\n * @param null $post_count\r\n * @param string $search_query\r\n * @param array $search_parameters\r\n * @param array $defaults\r\n * @return null|int                  return null to use theme default\r\n *\/\r\nfunction my_avf_relevanssi_ajax_search( $post_count, $search_query, $search_parameters, $defaults )\r\n{\r\n\t\/\/\tchange to e.g. 25\r\n\treturn 25;\r\n}\r\n\r\nadd_filter( 'avf_relevanssi_ajax_search', 'my_avf_relevanssi_ajax_search', 10, 4 );\r\n<\/code><\/pre>\n<p><strong>Note:<\/strong>: The &#8220;avf_relevanssi_ajax_search&#8221; filter is added in Enfold 5.6.6 and this snippet will not work on earlier Enfold versions.<\/p>\n<p>The following filter limits the results per paginated page on the full search results page:<\/p>\n<pre><code>\r\nadd_filter( 'relevanssi_live_search_posts_per_page', function() { return 25; } );\r\n<\/code><\/pre>\n<p>You can use the Throttle search option on the Relevanssi settings page to limit searches to 500 records on larger stores.<br \/>\nThe throttle value can be adjusted with the snippet below if required:<\/p>\n<pre><code>\r\nadd_filter( 'pre_option_relevanssi_throttle_limit', function( $limit ) { return 500; } );\r\n<\/code><\/pre>\n<p>It is recommended to keep it at 500 to ensure enough items are displayed for accurate search results. The throttle value (when set lower than 100-200 results can cause results to be inaccurate).<\/p>\n<p>Thanks to <a href=\"https:\/\/kriesi.at\/support\/profile\/thomasjarvisdesign\/\">ThinkJarvis<\/a> for the contributions on this section.<\/p>\n<\/div><\/section>\n<div  class='hr av-2mfmqzk-9-667db05603246694c246e64ef1888954 hr-default  avia-builder-el-13  el_after_av_textblock  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-304k5v4-7-74d53ba677ba50c569152c023f75ce3b '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><h3>Customize schema.org markup<\/h3>\n<\/div><\/section>\n<section  class='av_textblock_section av-304k5v4-5-5f925517c4ecf4a41d0dd6ff93267bc2 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><strong>Attention &#8211; this tutorial is intended for advanced php\/wordpress developers who know what they&#8217;re doing. If you&#8217;re not familiar with schema.org markups and\/or wordpress hooks please do not mess around with the code.<\/strong><\/p>\n<p>With Enfold 2.0 we introduced modern html5 and schema.org markup which is used with the theme framework and template builder. The markup helps you to improve the search engine ranking &#8211; for more information refer to: <a title=\"Schema.org\" href=\"https:\/\/schema.org\/\" target=\"_blank\" rel=\"noopener\">Schema.org<\/a>. However we know that some advanced coders and seo experts might want to fine tune the schema.org markup and thus we created the markup feature with flexibility and customization options in mind.<\/p>\n<p>This article will show you all hook and options \u00a0which help you to customize the markup output.<\/p>\n<p>1) <strong>Options<\/strong>:<\/p>\n<p>Since Enfold 2.7.1 we added an &#8220;Automated Schema.org HTML Markup&#8221; dropdown to the theme option page. Go to Enfold &gt; Theme Options and select &#8220;Not activated&#8221; if you want to deactivate the schema.org markup on the entire website. By default it&#8217;s activated.<\/p>\n<p>2) <strong>Hooks<\/strong>:<\/p>\n<p>If you want to customize the schema.org markup I recommend to study the markup function code in\u00a0<strong>enfold\\includes\\helper-markup.php<\/strong>. You&#8217;ll notice 3 filters, namely &#8220;avf_markup_helper_args&#8221;, &#8220;avf_markup_helper_attributes&#8221; and &#8220;avf_markup_helper_output&#8221;.<\/p>\n<h4>a) &#8220;avf_markup_helper_args&#8221; filter<\/h4>\n<p>This filter enables you to change the arguments which are passed to the the markup generation function. By default 5 arguments are supported &#8211;<\/p>\n<pre><code>'context' =&gt; '',\r\n'echo' =&gt; true,\r\n'post_type' =&gt; '',\r\n'id' =&gt; '',\r\n'custom_markup' =&gt; '',\r\n'force' =&gt; false<\/code><\/pre>\n<p>The &#8220;context&#8221; argument determines which markup will be used for the current element (please study the switch function to learn which context triggers a certain markup), the &#8220;echo&#8221; argument is self explaining, the &#8220;post_type&#8221; argument can contain the current post type. If it&#8217;s not set you can use the <a href=\"https:\/\/codex.wordpress.org\/Function_Reference\/get_post_type\" target=\"_blank\" rel=\"noopener\">get_post_type()<\/a> function to fetch the post type from the main query. The same thing applies to the &#8220;id&#8221; argument which is only set if the markup function is called within a custom query. If it&#8217;s a single post\/page use the <a href=\"https:\/\/codex.wordpress.org\/Function_Reference\/get_the_ID\" target=\"_blank\" rel=\"noopener\">get_the_ID()<\/a> function to fetch the id of the current post\/page.<\/p>\n<p>The &#8220;custom_markup&#8221; argument is not used (and set) by default but you can use it to overwrite our default markup with your custom schema.org markup. Note that this parameter is only powerful if you use it in combination with some other hooks. Eventually it enables you to overwrite the markup for each template builder element (and subelement) if necessary. I.e. you can use the &#8220;avf_template_builder_shortcode_elements&#8221; filter to add a new input field to the shortcode\/template builder and then pass the content of the &#8220;markup&#8221; input field with the &#8220;custom_markup&#8221; argument to the markup function. I recommend to study the sample code at the end of this article to understand how this filter can be used. If you&#8217;re still not sure how it works I recommend to paste the code into a child theme functions.php file and then go to the template builder option page to test it on your own.<\/p>\n<p>The &#8220;force&#8221; argument enables you to activate the markup for certain elements even if the user deactivated the markup (see 1) ) feature on the theme option page.<\/p>\n<h4>b) &#8220;avf_markup_helper_attributes&#8221; filter<\/h4>\n<p>This filter enables you to register new attributes (i.e. for a new, custom context) or to overwrite the content of existing attributes. I.e. if you want to remove the markup for the &#8220;phone&#8221; context insert this code into the child theme functions.php file:<\/p>\n<pre><code>add_filter('avf_markup_helper_attributes','avia_change_schema_attributes', 10, 2);\r\nfunction avia_change_schema_attributes($attributes, $args)\r\n{\r\n\tif($args['context'] == 'phone')\r\n\t{\r\n\t\tunset($attributes);\r\n\t}\r\n\r\n\treturn $attributes;\r\n}<\/code><\/pre>\n<p>You can also overwrite the content of an attribute:<\/p>\n<pre><code>\r\nadd_filter('avf_markup_helper_attributes','avia_change_schema_attributes', 10, 2);\r\nfunction avia_change_schema_attributes($attributes, $args)\r\n{\r\n\tif($args['context'] == 'author_name')\r\n\t{\r\n\t\t$attributes['itemscope'] = 'creator'; \/\/default value is $attributes['itemprop'] = 'name';\r\n\t}\r\n\r\n\treturn $attributes;\r\n}<\/code><\/pre>\n<h4>c) &#8220;avf_markup_helper_output&#8221; filter<\/h4>\n<p>This filter enables you to manipulate the final output. Note it&#8217;s a text string, thus I recommend to use the other filters for the markup customization. This filter is useful for prefix\/suffix text and final text replacements.<\/p>\n<pre><code>add_filter('avf_markup_helper_output','avia_change_schema_output', 10, 2);\r\nfunction avia_change_schema_output($markup, $args)\r\n{\r\n\t\/\/manipulate $markup code\r\n\treturn $markup;\r\n}<\/code><\/pre>\n<h4>d) Advanced example code<\/h4>\n<p>This code will add a new input field to all shortcode option windows which enables you to overwrite the default markup with a custom schema.org markup. Note that the input field does not validate your markup nor does it check if the context makes sense for the current element or not. This code is just a &#8220;starting point&#8221; for developers who want to build an advanced markup ui for their clients based on our Enfold theme framework.<\/p>\n<pre><code>\/*\r\nAdd new input option field to the shortcode option windows. Also include sub-element option windows in case a custom markup is required for image slides, content slides, etc.\r\n*\/\r\n\r\nadd_filter('avf_template_builder_shortcode_elements','avia_custom_markup_element', 10, 2);\r\nfunction avia_custom_markup_element($elements, $config)\r\n{\r\n\t$elements[] = array(\r\n\t\t\"name\" =&gt; __(\"Custom Schema.org Markup Context\",'avia_framework' ),\r\n\t\t\"desc\" =&gt; __(\"Set a custom schema.org markup context\",'avia_framework' ),\r\n\t\t\"id\" =&gt; \"custom_markup\",\r\n\t\t\"type\" =&gt; \"input\",\r\n\t\t\"std\" =&gt; \"\");\r\n\r\n\tforeach($elements as $key =&gt; $data)\r\n\t{\r\n\t\tif(!empty($data['subelements']))\r\n\t\t{\r\n\t\t\t$elements[$key]['subelements'][] = array(\r\n\t\t\t\"name\" =&gt; __(\"Custom Schema.org Markup Context\",'avia_framework' ),\r\n\t\t\t\"desc\" =&gt; __(\"Set a custom schema.org markup context\",'avia_framework' ),\r\n\t\t\t\"id\" =&gt; \"custom_markup\",\r\n\t\t\t\"type\" =&gt; \"input\",\r\n\t\t\t\"std\" =&gt; \"\");\r\n\t\t}\r\n\t}\r\n\r\n\treturn $elements;\r\n}\r\n\r\n\/*\r\nCheck if the custom_markup option is set. If yes store it into the \u00a7meta variable to pass it to the shortcode handler\r\n*\/\r\nadd_filter('avf_template_builder_shortcode_meta', 'add_markup_to_meta', 10, 4);\r\nfunction add_markup_to_meta($meta, $atts, $content, $shortcodename)\r\n{\r\n\t$meta['custom_markup'] = isset($atts['custom_markup']) ? $atts['custom_markup'] : '';\r\n\treturn $meta;\r\n}\r\n\r\n\/*\r\nCheck if the custom_markup option is set. If yes store it into the \u00a7meta variable to pass it to the shortcode handler\r\n*\/\r\nadd_filter('avf_markup_helper_args','print_args_schema_org', 10, 1);\r\nfunction print_args_schema_org($args)\r\n{\r\n\tif(!empty($args['custom_markup']))\r\n\t{\r\n\t\t$args['context'] = $args['custom_markup'];\r\n\t}\r\n\r\n\tif($args['context'] == \"no_markup\") $args['context'] = false;\r\n\r\n\treturn $args;\r\n}<\/code><\/pre>\n<p>Now you can use the input field to change the default markup context to a custom context. The input field content is stored for each shortcode &#8211; thus you can also modify the context for each shortcode individually. The sample code above i.e. enables you to remove the markup from a certain shortcode. Just type in &#8220;no_markup&#8221; into the input field and the markup will be removed from the shortcode.<\/p>\n<\/div><\/section>\n<div  class='hr av-2mfmqzk-6-19812e3c26d796da80ee1f6bc638b062 hr-default  avia-builder-el-16  el_after_av_textblock  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-304k5v4-4-dbd903727c6d2b0252d60c4c3c49206d '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><h3>Search bar shortcode<\/h3>\n<\/div><\/section>\n<section  class='av_textblock_section av-304k5v4-3-86f5b09f9af17ea302551bbc0b109edb '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p>The search function can be placed anywhere in your post or widget area using a shortcode. To activate the shortcode please add the below function in the functions.php first.<\/p>\n<\/div><\/section>\n\n<section  class='av_textblock_section av-304k5v4-2-57877e4a788346f8997ae91213b0f078 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p>Place the below shortcode anywhere on your site. You can use this shortcode in the Enfold options &gt; Header &gt; Extra Elements &gt; Extra info to display the search box in the top bar.<\/p>\n<\/div><\/section>\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":9,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"no","_lmt_disable":"","footnotes":""},"categories":[2,12],"tags":[],"class_list":["post-8367","post","type-post","status-publish","format-standard","hentry","category-documentation","category-explore","documentation","explore"],"modified_by":"Yigit","_links":{"self":[{"href":"https:\/\/kriesi.at\/documentation\/enfold\/wp-json\/wp\/v2\/posts\/8367","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kriesi.at\/documentation\/enfold\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kriesi.at\/documentation\/enfold\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kriesi.at\/documentation\/enfold\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/kriesi.at\/documentation\/enfold\/wp-json\/wp\/v2\/comments?post=8367"}],"version-history":[{"count":15,"href":"https:\/\/kriesi.at\/documentation\/enfold\/wp-json\/wp\/v2\/posts\/8367\/revisions"}],"predecessor-version":[{"id":13586,"href":"https:\/\/kriesi.at\/documentation\/enfold\/wp-json\/wp\/v2\/posts\/8367\/revisions\/13586"}],"wp:attachment":[{"href":"https:\/\/kriesi.at\/documentation\/enfold\/wp-json\/wp\/v2\/media?parent=8367"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kriesi.at\/documentation\/enfold\/wp-json\/wp\/v2\/categories?post=8367"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kriesi.at\/documentation\/enfold\/wp-json\/wp\/v2\/tags?post=8367"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}