˜'¬<Ÿ& àÆJ<ŸÀÿÿÿ Q<Ÿ €0~ÜE%VàÿÿÿèR<Ÿ €ðÿÿÿÀ¤O<Ÿ€pN<Ÿ(N<Ÿ`e F%Vx{<ŸR<ŸVøC#BðÿM<Ÿý ‚€òÔ<ŸðÿM<Ÿö{<ŸÀN<Ÿè T<Ÿ@ÜJ<Ÿˆ)C<ŸR<Ÿ& `#T<ŸX¤E#BðÿM<Ÿ˜ÚBh¤XE#BðÿM<ŸhâíAx¤¨E#BðÿM<ŸXBˆ¤F#BðÿM<ŸèêëA˜¤PF#BðÿM<ŸàìA¨¤ F#BðÿM<Ÿ¾ëA¸¢øÅBðÿM<ŸßëA ‚€M<ŸðÿM<Ÿˆ6È<Ÿ M<Ÿ N<ŸR<Ÿ)C<ŸR<Ÿ(*`R<Ÿ!‚àC<ŸðÿM<Ÿ0+¬<Ÿ ÜJ<Ÿø{<Ÿ )C<Ÿ˜)C<Ÿ€%J<ŸR<Ÿ13@ÆJ<ŸÀø{<Ÿ‚PúÑ<ŸðÿM<Ÿ8=È<Ÿ`HJ<ŸˆCÔR<Ÿ%J<Ÿ¨)C<ŸˆþÑ<ŸR<Ÿ>U9J<Ÿ,`ÜR<Ÿ˜)¬<ŸÐ)¬<Ÿ*¬<ŸN<ŸPN<ŸˆN<ŸÀN<ŸøN<Ÿ0N<ŸhN<Ÿ`™M<ŸX–PI`¥<ŸÍM<ŸàRI€»<Ÿ Á?IxñAŸðÿM<ŸXN<ŸðÿM<ŸhPN<ŸðÿM<ŸxˆN<ŸðÿM<ŸˆÀN<ŸðÿM<Ÿ˜øN<ŸðÿM<Ÿ¨0N<ŸðÿM<Ÿ¸hN<ŸHãBà«<Ÿà7{<Ÿàÿÿÿ€ïR<Ÿ€0~ÜE%Vðÿÿÿ@„O<Ÿ€ðÿÿÿ@¢O<Ÿ€PN<ŸP N<Ÿ`e F%VR<Ÿy8µ!B¨N<Ÿý€µ!B¨N<Ÿý(èJ#BàñP<Ÿ¨N<ŸŸ ‚0Õ<Ÿ¨N<ŸÀ9J<ŸðN<Ÿ¸æJ<Ÿ€ôP<ŸÀ)C<ŸR<Ÿ$,`èJ<Ÿ8$0K#B¨N<Ÿ8BH$€K#B¨N<ŸhâíAX$ÈK#B¨N<Ÿ¸'ìAh$L#B¨N<Ÿ˜øëAx$XL#B¨N<Ÿ¾ëAˆ$ L#B¨N<ŸB‚ßÑ<Ÿ¨N<Ÿâ«<Ÿ M<Ÿ0N<ŸH hO<ŸÐ)C<ŸÈ)C<Ÿ %J<ŸR<Ÿ9=@žO<Ÿ€iO<Ÿ‚pXÐ<Ÿ¨N<Ÿ€îA<ŸˆaY<ŸMP<ŸÀŒC<ŸØ)C<ŸÀv{<Ÿ°%J<ŸR<Ÿ@x1 P<Ÿà%J<ŸB‚0‰C<Ÿ0@ÀT<ŸÀ¯R<Ÿ€lÓ<Ÿà)C<ŸÐ%J<ŸÀ%J<Ÿ * Allow developers to change the content of specific social meta tags. * * The dynamic part of the hook name. $this->network, is the network slug * and $og_property, is the property which we are outputting. * * @param string $content The content of the property. */ $content = $this->do_filter( "opengraph/{$this->network}/$og_property", $content ); if ( empty( $content ) || ! is_scalar( $content ) ) { return false; } $tag = 'facebook' === $this->network ? 'property' : 'name'; $escaped_value = esc_attr( $content ); if ( false !== filter_var( $content, FILTER_VALIDATE_URL ) ) { $escaped_value = esc_url_raw( $content ); } printf( '' . "\n", esc_attr( $tag ), esc_attr( $property ), $escaped_value ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- $escaped_value is escaped above. return true; } /** * Get Overlay Image URL * * @param string $network The social network. * * @return string */ public function get_overlay_image( $network = 'facebook' ) { if ( is_singular() ) { return Helper::get_post_meta( "{$network}_enable_image_overlay" ) ? Helper::get_post_meta( "{$network}_image_overlay", '', 'play' ) : ''; } if ( is_category() || is_tag() || is_tax() ) { return Helper::get_term_meta( "{$network}_enable_image_overlay" ) ? Helper::get_term_meta( "{$network}_image_overlay", 0, '', 'play' ) : ''; } if ( is_author() ) { return Helper::get_user_meta( "{$network}_enable_image_overlay" ) ? Helper::get_user_meta( "{$network}_image_overlay", 0, 'play' ) : ''; } return ''; } }