bannerSevenPath + ,%m add_setting \-Ap capability cJ RY#Mw transport S@ postMessage 1e is_layout_block >}w array_set l >}w array_set K et_divi_buttons %(+g /css/posts s + ,%m add_setting \-Ap capability A RY#Mw transport U postMessage T x& bannerThreeAlt w:9p formaction + |> s thumbnails e U O xml_data _ -; & bannerEightAlt VT* xml_to_array w+ ޏ Live Preview me + ,%m add_setting 0 \-Ap capability RY#Mw transport A postMessage U ޯڐ Featured Image esc_attr l bJ7p et_get_option +[Bw resources U ʂqp array_pick CVS# _seo_index_type + ,%m add_setting rgba(0,0,0,0) \-Ap capability RY#Mw transport G@ postMessage a|t et_core_export c~Y:? bannerOnePath bJ7p et_get_option esc_attr ncode 4h tabindex lor U esc_attr c.b seo_index_type + ,%m add_setting s esc_attr de U esc_attr y C3 hide_nav pDv postMessage . H0w get_style e U __z>p et_api_key e Pȩ,nw " /> ze $c,] divi_blog_style PH _enqueue_script *2 input_attrs p;wr prevent_failure + ,%m add_setting = N7] divi_grab_image seo_keywords ,LNU _enqueue_style pDv postMessage > (ү@ save_library `t has_file ol ˤ,& bannerFourPath esc_attr PSa Letter Spacing *2 input_attrs 3Hi applicability ٥ $*N ET_DEBUG _id esc_attr ter A use_relpath g 2p exceptions b%5 valid_excuses ?‧ main_selector +[Bw resources }DĭJZ theme_version _ 6 websafe_fonts kh google_fonts esc_attr react_jsx AGE Űٝ array_sort_by glI ET_Onboarding e c~Y:? bannerOnePath t@So _can_write s Zp bJ7p et_get_option s nmآ key_or_prop 34M divi-customizer y temp_dir sion 34M divi-customizer kh google_fonts `"o apply_query t If custom_fonts U &Ez array_update 34M divi-customizer pp܆ hasHeaderLayout 'q resource_owner .ʶ hasFooterLayout $Yn@ divi_fixed_nav y temp_dir n }DĭJZ theme_version v postContent ath '_= et_option_name ~]vDw is_old_wp BdPPD f each link being put out by the Yoast SEO breadcrumbs class. * * @param array $link The link array. * * @api string $link_output The output string. */ return \apply_filters( 'wpseo_breadcrumb_single_link', $link, $breadcrumb ); } /** * Retrieves HTML ID attribute. * * @return string The id attribute. */ protected function get_id() { if ( ! $this->id ) { /** * Filter: 'wpseo_breadcrumb_output_id' - Allow changing the HTML ID on the Yoast SEO breadcrumbs wrapper element. * * @api string $unsigned ID to add to the wrapper element. */ $this->id = \apply_filters( 'wpseo_breadcrumb_output_id', '' ); if ( ! \is_string( $this->id ) ) { return ''; } if ( $this->id !== '' ) { $this->id = ' id="' . \esc_attr( $this->id ) . '"'; } } return $this->id; } /** * Retrieves HTML Class attribute. * * @return string The class attribute. */ protected function get_class() { if ( ! $this->class ) { /** * Filter: 'wpseo_breadcrumb_output_class' - Allow changing the HTML class on the Yoast SEO breadcrumbs wrapper element. * * @api string $unsigned Class to add to the wrapper element. */ $this->class = \apply_filters( 'wpseo_breadcrumb_output_class', '' ); if ( ! \is_string( $this->class ) ) { return ''; } if ( $this->class !== '' ) { $this->class = ' class="' . \esc_attr( $this->class ) . '"'; } } return $this->class; } /** * Retrieves the wrapper element name. * * @return string The wrapper element name. */ protected function get_wrapper() { if ( ! $this->wrapper ) { $this->wrapper = \apply_filters( 'wpseo_breadcrumb_output_wrapper', 'span' ); $this->wrapper = \tag_escape( $this->wrapper ); if ( ! \is_string( $this->wrapper ) || $this->wrapper === '' ) { $this->wrapper = 'span'; } } return $this->wrapper; } /** * Retrieves the separator. * * @return string The separator. */ protected function get_separator() { if ( ! $this->separator ) { $this->separator = \apply_filters( 'wpseo_breadcrumb_separator', $this->helpers->options->get( 'breadcrumbs-sep' ) ); $this->separator = ' ' . $this->separator . ' '; } return $this->separator; } /** * Retrieves the crumb element name. * * @return string The element to use. */ protected function get_element() { if ( ! $this->element ) { $this->element = \esc_attr( \apply_filters( 'wpseo_breadcrumb_single_link_wrapper', 'span' ) ); } return $this->element; } }