/*! elementor-pro - v3.27.0 - 16-02-2025 */ "use strict";(self.webpackChunkelementor_pro=self.webpackChunkelementor_pro||[]).push([[187],{7112:(e,t,s)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=s(6914);class SearchKeyboardHandler extends elementorModules.frontend.handlers.Base{focusableResultElements;currentResultFocusedIndex=-1;__construct(){super.__construct(...arguments),elementorFrontend.hooks.addAction("search:results-updated",this.loadResultElementsEvents.bind(this))}getDefaultSettings(){return{selectors:{searchWrapper:".e-search",searchField:".e-search-input",resultsContainer:".e-search-results-container",loopItem:".e-loop-item",clearIcon:".e-search-input-wrapper > svg, .e-search-input-wrapper > i"}}}getDefaultElements(){const e=this.getSettings("selectors");return{resultsContainer:this.$element[0].querySelector(e.resultsContainer),searchField:this.$element[0].querySelector(e.searchField),clearIcon:this.$element[0].querySelector(e.clearIcon)}}setFocusableElements(e){const t=(0,n.focusableElementSelectors)(),s=e.querySelectorAll(t);this.focusableResultElements=Array.from(s).filter((e=>!e.disabled&&!e.inert&&-1!==e.tabIndex))}isSearchInputFocused(){return this.elements.searchField===elementorFrontend.elements.window.document.activeElement}bindEvents(){this.boundHandleKeyboardNavigation=this.handleKeyboardNavigation.bind(this),this.boundHandleEscapeKey=this.handleEscapeKey.bind(this),this.elements.searchField.addEventListener("keydown",this.boundHandleKeyboardNavigation),elementorFrontend.elements.window.document.addEventListener("keydown",this.boundHandleEscapeKey),this.elements.searchField.addEventListener("focus",this.openResults.bind(this))}loadResultElementsEvents(){this.setFocusableElements(this.$element[0].querySelector(this.getSettings("selectors.resultsContainer"))),this.focusableResultElements?.forEach((e=>{e.addEventListener("keydown",this.handleKeyboardNavigation.bind(this))}))}unbindEvents(){this.boundHandleKeyboardNavigation&&this.elements.searchField.removeEventListener("keydown",this.boundHandleKeyboardNavigation),elementorFrontend.elements.window.document.removeEventListener("keydown",this.boundHandleEscapeKey),this.elements.searchField.removeEventListener("focus",this.openResults.bind(this))}handleKeyboardNavigation(e){switch(e.key){case"ArrowDown":this.focusNextElement();break;case"ArrowUp":this.focusPreviousElement();break;case"Enter":this.handleEnterKey()}}areResultsClosed(){return 0===this.elements.resultsContainer.querySelectorAll(this.getSettings("selectors.loopItem")).length||this.elements.resultsContainer.classList.contains("hidden")}openResults(){this.areResultsClosed()&&(this.elements.resultsContainer.classList.remove("hidden"),elementorFrontend.hooks.doAction("search:results-displayed",this.getID()))}handleEnterKey(){this.closeResults()}handleEscapeKey(e){if("Escape"!==e.key)return;const t=elementorFrontend.elements.window.document.activeElement;(this.elements.resultsContainer.contains(t)||!1)&&this.elements.searchField.focus(),this.closeResults()}focusNextElement(){this.isSearchInputFocused()?this.currentResultFocusedIndex=0:(this.currentResultFocusedIndex++,this.checkFocusIndexBounds()),this.updateFocus()}focusPreviousElement(){this.isSearchInputFocused()?this.currentResultFocusedIndex=this.focusableResultElements.length-1:(this.currentResultFocusedIndex--,this.checkFocusIndexBounds()),this.updateFocus()}checkFocusIndexBounds(){this.currentResultFocusedIndex>=this.focusableResultElements.length?this.currentResultFocusedIndex=-1:this.currentResultFocusedIndex<-1&&(this.currentResultFocusedIndex=this.focusableResultElements.length-1)}updateFocus(){-1===this.currentResultFocusedIndex?this.focusSearchAndMoveCursorToEnd():this.setFocusToElement(this.focusableResultElements[this.currentResultFocusedIndex])}closeResults(){this.elements.resultsContainer.classList.add("hidden"),this.updateAriaExpanded(!1)}updateAriaExpanded(e){this.elements.searchField.setAttribute("aria-expanded",e)}focusSearchAndMoveCursorToEnd(){const e=this.elements.searchField,t=e.value.length;this.setFocusToElement(this.elements.searchField),e.setSelectionRange(t,t)}setFocusToElement(e){e.focus()}}t.default=SearchKeyboardHandler},6963:(e,t,s)=>{var n=s(6784);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=n(s(5012));class Search extends elementorModules.frontend.handlers.Base{debounceTimeoutId;page_number;__construct(){super.__construct(...arguments),elementorFrontend.hooks.addAction("search:results-displayed",this.hideOtherResults.bind(this))}getDefaultSettings(){return{selectors:{searchWrapper:".e-search",searchField:".e-search-input",submitButton:".e-search-submit",clearIcon:".e-search-input-wrapper > svg, .e-search-input-wrapper > i",searchIcon:".e-search-label > svg, .e-search-label > i",resultsContainer:".e-search-results-container",results:".e-search-results",links:"a.page-numbers:not(.current)"},classes:{searchResultsListWrapper:"e-search-results-list",searchResultsPagination:"elementor-pagination"}}}getDefaultElements(){const e=this.getSettings("selectors");return{searchWidget:this.$element[0],searchWrapper:this.$element[0].querySelector(e.searchWrapper),searchField:this.$element[0].querySelector(e.searchField),submitButton:this.$element[0].querySelector(e.submitButton),clearIcon:this.$element[0].querySelector(e.clearIcon),searchIcon:this.$element[0].querySelector(e.searchIcon),resultsContainer:this.$element[0].querySelector(e.resultsContainer),results:this.$element[0].querySelector(e.results),links:this.$element[0].querySelectorAll(e.links)}}onInit(){super.onInit(),this.changeClearIconVisibility(!0),this.updateInputStyle(),this.toggleSearchResultsVisibility=this.toggleSearchResultsVisibility.bind(this),document.addEventListener("click",this.toggleSearchResultsVisibility),document.fonts.ready.then((()=>this.updateInputStyle()))}onDestroy(){document.removeEventListener("click",this.toggleSearchResultsVisibility)}bindEvents(){this.elements.submitButton.addEventListener("click",this.onSubmit.bind(this)),this.elements.searchField.addEventListener("input",(e=>{this.changeClearIconVisibility(!e.target.value.length),this.debounce(this.onType)(e)})),this.elements.searchField.addEventListener("keydown",this.onSearchFieldKeydown.bind(this)),this.elements.searchWidget.addEventListener("click",this.onClick.bind(this)),["focusin","focusout"].forEach((e=>{this.elements.searchField.addEventListener(e,this.toggleWidgetFocusClass.bind(this))})),this.elements.clearIcon?.addEventListener("click",this.onClear.bind(this)),this.linksEventListeners()}linksEventListeners(){this.elements.links.length&&this.elements.links.forEach((e=>{e.addEventListener("click",(e=>{this.handleLinkClick(e)}))}))}handleLinkClick(e){e.preventDefault();const t=e?.target.getAttribute("href"),s=new URLSearchParams(new URL(t).search).get("e-search-page");this.page_number=s?parseInt(s,10):1,this.removeLinksListeners(),this.renderLiveResults()}removeLinksListeners(){this.elements.links.length&&this.elements.links.forEach((e=>{e.removeEventListener("click",this.handleLinkClick)}))}reInitLinks(){this.elements.links=document.querySelectorAll(`[data-id="${this.getID()}"] a.page-numbers:not(.current)`),this.linksEventListeners()}onClick(){this.elements.resultsContainer.classList.add("hide-loader")}onType(e){if(e.preventDefault(),this.updateAriaLabel(this.elements.searchField.value),!this.elements.searchField.value.length)return void this.clearResultsMarkup();const t=this.getMinimumSearchLength();this.shouldShowLiveResults()&&this.elements.searchField.value.length>=t&&(this.page_number=1,this.renderLiveResults())}toggleWidgetFocusClass(e){const t="focusin"===e.type;this.$element[0].classList.toggle("e-focus",t)}onSubmit(e){elementorFrontend.isEditMode()&&e.preventDefault()}onClear(e){e.preventDefault(),this.elements.searchField.value="",this.clearResultsMarkup(),this.elements.searchField.focus(),this.changeClearIconVisibility(!0)}onSearchFieldKeydown(e){"Enter"===e.code&&(this.clearResultsMarkup(),this.onSubmit(e))}fetchUpdatedSearchWidgetMarkup(){return fetch(`${elementorProFrontend.config.urls.rest}elementor-pro/v1/refresh-search`,this.getFetchArgumentsForSearchUpdate())}getMinimumSearchLength(){return this.getElementSettings().minimum_search_characters||3}shouldShowLiveResults(){return this.getElementSettings().live_results&&this.getElementSettings().template_id}renderLiveResults(){if(document.querySelector(`.elementor-element-${this.getID()}`)){if(this.elements.searchField.value)return this.elements.resultsContainer.classList.remove("hide-loader"),this.elements.resultsContainer.classList.remove("hidden"),this.fetchUpdatedSearchWidgetMarkup().then((e=>e instanceof Response&&e?.ok&&!(400<=e?.status)?e.json():{})).catch((()=>({}))).then((e=>{if(!e?.data)return void this.updateAriaExpanded(!1);const t=this.createResultNode(e);this.elements.results.replaceChildren(t.resultContentNode),this.elements.results.append(t.paginationNode),this.elements.resultsContainer.classList.add("hide-loader"),this.maybeHandleNoResults(t.resultContentNode),elementorFrontend.hooks.doAction("search:results-updated")})).finally((()=>{const e=document.querySelectorAll(`[data-id="${this.getID()}"] .e-loop-item`);(0,i.default)(e),this.reInitLinks(),ElementorProFrontendConfig.settings.lazy_load_background_images&&document.dispatchEvent(new Event("elementor/lazyload/observe"))}));this.clearResultsMarkup()}}maybeHandleNoResults(e){const t=!!e.querySelector(".e-search-nothing-found-message");this.elements.results.classList[t?"add":"remove"]("no-results"),t||this.hideOtherResults()}hideOtherResults(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;if(e&&e!==this.getID())return;const t=document.querySelectorAll(`${this.getSettings("selectors").resultsContainer}:not(.hidden)`);Array.from(t).filter((e=>!e.closest(`.elementor-element-${this.getID()}`))).forEach((e=>e.classList.add("hidden")))}createResultNode(e){const t=document.createElement("div"),s=this.getSettings("classes.searchResultsListWrapper"),n=document.createElement("nav"),i=this.getSettings("classes.searchResultsPagination");n.setAttribute("class",i),n.setAttribute("aria-label","Pagination"),t.setAttribute("class",s),n.innerHTML=e.pagination,t.innerHTML=e.data;const r=t.querySelectorAll(".e-loop-item").length>0;return this.updateAriaExpanded(r),{resultContentNode:t,paginationNode:n}}updateAriaExpanded(e){this.elements.searchField.setAttribute("aria-expanded",e?"true":"false")}updateAriaLabel(e){e?this.elements.resultsContainer.setAttribute("aria-label",`Results for ${e}`):this.elements.resultsContainer.removeAttribute("aria-label")}clearResultsMarkup(){this.elements.results.innerHTML="",this.updateAriaExpanded(!1)}getFetchArgumentsForSearchUpdate(){const e=this.prepareSearchUpdateRequestData(),t={method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(e)};return elementorFrontend.isEditMode()&&elementorPro.config.eSearch?.nonce&&(t.headers["X-WP-Nonce"]=elementorPro.config.eSearch?.nonce),t}prepareSearchUpdateRequestData(){const e=""+this.getID(),t={post_id:this.getClosestDataElementorId(this.$element[0]),widget_id:e,search_term:this.elements.searchField.value||"",page_number:this.page_number};if(elementorFrontend.isEditMode()){const s=window.top.$e.components.get("document").utils.findContainerById(e);t.widget_model=s.model.toJSON({remove:["default","editSettings","defaultEditSettings"]}),t.is_edit_mode=!0}return t}getClosestDataElementorId(e){const t=e.closest("[data-elementor-id]");return t?t.getAttribute("data-elementor-id"):0}debounce(e){var t=this;let s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:300;return function(){for(var n=arguments.length,i=new Array(n),r=0;re.apply(t,i)),s)}}updateInputStyle(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:["searchIcon","clearIcon"];const t={searchIcon:"icon-label",clearIcon:"icon-clear"},s=this.$element[0].style,n=this.getAllDisplayNoneParents(this.$element[0].parentNode);this.setElementsDisplay(n,"block");for(const n of e){const{width:e}=this.elements[n]?.getBoundingClientRect()||{width:0},i=t[n];s.setProperty(`--e-search-${i}-absolute-width`,e+"px"),this.elements.searchField.classList[e?"remove":"add"](`no-${i}`)}this.setElementsDisplay(n,""),this.elements.searchWrapper.classList.remove("hidden")}changeClearIconVisibility(e){this.elements.clearIcon?.classList[e?"add":"remove"]("hidden")}toggleSearchResultsVisibility(e){const t=this.getSettings("selectors"),s=`.elementor-element-${this.getID()}`,{target:n}=e,i=!!n?.closest(`${s} ${t.resultsContainer}`)||n?.classList?.contains(t.resultsContainer)&&!!n?.closest(s),r=!!n?.closest(`${s} ${t.searchWrapper}`),l=n?.classList?.contains(t.searchField.replace(".","")),a=this.elements.resultsContainer?.children?.length;i&&this.hideOtherResults(),a&&!i&&(l&&r||this.elements.resultsContainer.classList.add("hidden"))}getAllDisplayNoneParents(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];if(!e||e===document.body)return t;return"none"===window.getComputedStyle(e).display&&t.push(e),this.getAllDisplayNoneParents(e.parentNode,t)}setElementsDisplay(e,t){e.forEach((e=>{e.style.display=t}))}onElementChange(e){const t={search_field_icon_label_size:()=>this.updateInputStyle(["searchIcon"]),icon_clear_size:()=>this.updateInputStyle(["clearIcon"])};t[e]&&t[e]()}}t.default=Search}}]);{"id":1828,"date":"2025-02-17T21:42:37","date_gmt":"2025-02-18T00:42:37","guid":{"rendered":"https:\/\/divinaalvarenga.com.br\/peixeoferta\/?p=1828"},"modified":"2025-10-29T03:10:34","modified_gmt":"2025-10-29T06:10:34","slug":"how-rainbows-continue-to-inspire-connection-in-contemporary-art-and-media","status":"publish","type":"post","link":"https:\/\/divinaalvarenga.com.br\/peixeoferta\/how-rainbows-continue-to-inspire-connection-in-contemporary-art-and-media\/","title":{"rendered":"How Rainbows Continue to Inspire Connection in Contemporary Art and Media"},"content":{"rendered":"
\n

Building upon the foundational understanding of rainbow symbolism as a universal connector from mythological origins to modern gaming, this article explores how contemporary art and media expand and deepen that symbolism. Rainbows, once regarded solely as celestial phenomena and mythic bridges, now serve as versatile motifs that foster emotional engagement, social cohesion, and cultural dialogue in diverse creative contexts. By examining current trends and technological innovations, we can appreciate how artists and media creators utilize rainbows not just for aesthetic appeal, but as powerful tools for connection in our interconnected world.<\/p>\n<\/div>\n

\n
\n

Contents<\/h2>\n

1. The Aesthetic Appeal of Rainbows in Contemporary Art and Media<\/a>
\n
2. Rainbows as Emblems of Diversity and Inclusion in Contemporary Culture<\/a>
\n
3. Interactive and Immersive Experiences: Rainbows in Digital and Virtual Contexts<\/a>
\n
4. Symbolism and Narrative in Contemporary Films and Video Games<\/a>
\n
5. The Science and Technology Behind Rainbow-Inspired Media Art<\/a>
\n
6. Ethical and Cultural Considerations of Rainbow Symbols Today<\/a>
\n
7. Conclusion: Bridging Past and Present \u2013 Rainbows as Enduring Connectors in Art and Media<\/a>\n<\/div>\n

1. The Aesthetic Appeal of Rainbows in Contemporary Art and Media<\/h2>\n

Contemporary artists and media creators harness the vibrant spectrum of rainbows to craft compelling visual narratives that evoke emotion and symbolize unity. The aesthetic appeal of rainbow imagery lies in its innate ability to attract attention and communicate complex themes through simple yet powerful visual cues.<\/p>\n

a. Visual storytelling: how artists and media creators leverage rainbow imagery<\/h3>\n

Artists like Yayoi Kusama incorporate rainbow motifs to symbolize hope and diversity, while media productions often depict rainbows as portals or bridges between worlds. For instance, in the animated series Steven Universe<\/em>, rainbows serve as symbols of harmony and acceptance, visually reinforcing the show’s themes of unity. Digital art platforms also utilize vibrant rainbow gradients to evoke feelings of optimism and inclusivity, making the imagery accessible and emotionally resonant.<\/p>\n

b. The psychological impact of rainbow colors on audiences<\/h3>\n

Research in color psychology indicates that rainbow colors evoke positive emotions such as joy, hope, and calmness. The spectrum’s natural harmony can reduce anxiety and foster feelings of belonging, making rainbow imagery especially effective in campaigns promoting social cohesion or mental health awareness.<\/p>\n

c. Case studies of iconic rainbow motifs in recent artworks and media productions<\/h3>\n

One notable example is the Rainbow Flag<\/em> designed by Gilbert Baker in 1978, which has become a global emblem of LGBTQ+ pride, inspiring countless artworks and media campaigns. In digital media, the Rainbow Road<\/em> in the Mario Kart<\/em> series exemplifies how rainbow motifs can serve as symbols of adventure and unity across generations.<\/p>\n

2. Rainbows as Emblems of Diversity and Inclusion in Contemporary Culture<\/h2>\n

The rainbow’s historical symbolism as a sign of hope has evolved into a universal icon of diversity and inclusion, particularly within social movements advocating for marginalized communities. Contemporary art and media utilize this symbolism to promote acceptance and collective identity.<\/p>\n

a. The role of rainbows in representing social movements (e.g., LGBTQ+ pride)<\/h3>\n

The rainbow flag’s adoption as a symbol of LGBTQ+ pride exemplifies how a simple color spectrum can encapsulate complex narratives of identity and rights. Artists incorporate rainbow motifs in murals, digital art, and fashion to express solidarity and visibility, reinforcing the message of unity within diversity.<\/p>\n

b. How contemporary art explores themes of unity through rainbow symbolism<\/h3>\n

Projects like the Rainbow Assemble<\/em> collective use rainbow imagery to challenge societal divisions and promote inclusivity. Installations often feature interconnected rainbow arcs that symbolize the bridging of differences, fostering dialogue and understanding.<\/p>\n

c. Media campaigns and digital art promoting global connectivity and acceptance<\/h3>\n

Campaigns such as the Global Rainbow Campaign<\/em> utilize social media to spread rainbow visuals worldwide, creating a shared visual language that unites diverse audiences. Digital art platforms host interactive rainbow murals that viewers can customize, enhancing personal engagement with inclusion narratives.<\/p>\n

3. Interactive and Immersive Experiences: Rainbows in Digital and Virtual Contexts<\/h2>\n

Technological advancements enable creators to craft immersive experiences where rainbow visuals are central. These digital innovations deepen emotional resonance and foster active participation, transforming passive observation into meaningful engagement.<\/p>\n

a. Use of rainbows in virtual reality and augmented reality art installations<\/h3>\n

VR and AR platforms incorporate rainbow effects to create environments that evoke hope and unity. For example, immersive installations in AR apps allow users to generate rainbow bridges connecting virtual spaces, symbolizing connection across physical and digital realms.<\/p>\n

b. Interactive media that allow audiences to create or manipulate rainbow imagery<\/h3>\n

Apps like Colorfy<\/em> and online platforms enable users to craft personalized rainbow artworks, fostering a sense of ownership and community. These tools often include collaborative features, encouraging shared creative expression that reinforces social bonds.<\/p>\n

c. The role of social media in spreading rainbow symbolism and fostering community<\/h3>\n

Hashtags such as #RainbowUnity<\/em> and #SpreadTheColor<\/em> facilitate global conversations around rainbow symbols. Social media challenges and filters amplify visibility, making rainbow imagery a unifying token that transcends geographic and cultural boundaries.<\/p>\n

4. The Science and Technology Behind Rainbow-Inspired Media Art<\/h2>\n

Advances in digital rendering and visual effects have expanded the creative possibilities for rainbow imagery, making it more vibrant and emotionally impactful. These technological trends enable storytellers to embed rainbow symbolism seamlessly into narratives, enriching viewer experience.<\/p>\n

a. Innovations in digital rendering of rainbow effects<\/h3>\n

Modern software like Adobe After Effects and Unreal Engine facilitate realistic and dynamic rainbow effects, which can respond to narrative cues or user interactions. This realism enhances the emotional connection, making rainbows more than just visual symbols\u2014they become integral storytelling elements.<\/p>\n

b. Augmenting reality with rainbow visuals to enhance emotional engagement<\/h3>\n

AR glasses and smartphone apps overlay rainbow visuals onto real-world environments, creating immersive moments of hope and unity in everyday settings. Such experiences can evoke powerful emotional responses, reinforcing messages of connection and acceptance.<\/p>\n

c. Future technological trends in rainbow symbolism within media art<\/h3>\n

Emerging technologies like AI-driven generative art and real-time rendering will enable even more personalized and emotionally resonant rainbow visuals. These innovations promise to deepen the symbolic power of rainbows as tools for social and emotional connection.<\/p>\n

5. Ethical and Cultural Considerations of Rainbow Symbols Today<\/h2>\n

While rainbows are broadly embraced as symbols of unity, their interpretations can vary across cultures, necessitating mindful representation. Commercialization and commodification also pose challenges to maintaining authentic and respectful use of rainbow imagery.<\/p>\n

a. Navigating cultural sensitivities and diverse interpretations<\/h3>\n

In some cultures, rainbows have specific spiritual or mythological meanings that differ from Western associations. For example, in M\u0101ori tradition, the K\u0101hui Maro<\/em> (rainbow) symbolizes a spiritual pathway. Creators should be aware of such nuances to foster respectful and inclusive representations.<\/p>\n

b. The commercialization and commodification of rainbow symbolism<\/h3>\n

The widespread use of rainbow imagery in fashion, advertising, and merchandise has led to concerns about trivializing its deeper meanings. Ensuring that such use respects the original significance helps preserve its cultural integrity.<\/p>\n

c. Ensuring authentic representation of rainbow-related themes in media<\/h3>\n

Authentic storytelling involves engaging with communities and respecting cultural origins. For example, inclusive media projects should collaborate with marginalized groups to accurately portray their experiences and symbolism associated with rainbows.<\/p>\n

6. Conclusion: Bridging Past and Present \u2013 Rainbows as Enduring Connectors in Art and Media<\/h2>\n

From their mythological roots to their modern applications, rainbows continue to serve as powerful symbols that unite diverse cultures, communities, and narratives. Contemporary art and media deepen this connection by utilizing technological innovations, fostering interactive experiences, and promoting inclusive storytelling.<\/p>\n

\n

“Rainbows are more than visual spectacles; they are bridges that connect us across differences, fostering hope and unity in an ever-changing world.”<\/p>\n<\/blockquote>\n

By understanding and respecting the rich layers of rainbow symbolism, creators and audiences alike continue to weave this vibrant motif into the fabric of contemporary culture, ensuring its relevance and power for generations to come. For a deeper exploration of how rainbows have served as universal symbols of connection from mythological stories to modern gaming, visit Rainbows as Symbols of Connection from Mythology to Modern Games<\/a>.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"

Building upon the foundational understanding of rainbow symbolism as a universal connector from mythological origins to modern gaming, this article explores how contemporary art and media expand and deepen that symbolism. Rainbows, once regarded solely as celestial phenomena and mythic bridges, now serve as versatile motifs that foster emotional engagement, social cohesion, and cultural dialogue […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"_links":{"self":[{"href":"https:\/\/divinaalvarenga.com.br\/peixeoferta\/wp-json\/wp\/v2\/posts\/1828"}],"collection":[{"href":"https:\/\/divinaalvarenga.com.br\/peixeoferta\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/divinaalvarenga.com.br\/peixeoferta\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/divinaalvarenga.com.br\/peixeoferta\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/divinaalvarenga.com.br\/peixeoferta\/wp-json\/wp\/v2\/comments?post=1828"}],"version-history":[{"count":1,"href":"https:\/\/divinaalvarenga.com.br\/peixeoferta\/wp-json\/wp\/v2\/posts\/1828\/revisions"}],"predecessor-version":[{"id":1829,"href":"https:\/\/divinaalvarenga.com.br\/peixeoferta\/wp-json\/wp\/v2\/posts\/1828\/revisions\/1829"}],"wp:attachment":[{"href":"https:\/\/divinaalvarenga.com.br\/peixeoferta\/wp-json\/wp\/v2\/media?parent=1828"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/divinaalvarenga.com.br\/peixeoferta\/wp-json\/wp\/v2\/categories?post=1828"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/divinaalvarenga.com.br\/peixeoferta\/wp-json\/wp\/v2\/tags?post=1828"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}