SL3{ VP?(X3{ VEFO3{ VPtD3{ VP`B 3{ V`B3{ V`ptU3{ V<q 3{ V`Y{pR 3{ Vm"3{ V@0qFO3{ V@Pt43{ VP0Q|(3{ V GB3{ V`tU3{ V<3{ V>`6ds6ds'@0IasbsT@`s@`s@@bs`G@`G@SSL3{ VP?3{ V``3{ VpP`3{ V`MaZ3{ V`N#3{ VPs1-3{ V.A!3{ VPQ(3{ V-3{ V4*93{ V+A!3{ VPQ"3{ Vpx{ V?3{ V*c^3{ VY3{ Vp|3{ Vp>E{ V|3{ VP>bsW{ VP@M?ds`?ds@bsSL3{ VPY?(X3{ V[EFO3{ VP[tFO3{ V`[tT3{ V`[<%-3{ V`p[/]&3{ V]qT3{ V]<-3{ Vp]4*93{ Vp]+(3{ VPp_Tv3{ V,{_x{ V@_Y3{ VPb|3{ VPb>E{ Vc|3{ Vc>dsdsfcs@UMshbsasecsecs asas`SL3{ VP ?G3{ V` @-H3{ V0 =N3{ VP AN3{ V` AT3{ V <13{ Vp >3{ Vp`pFO3{ V`PtT3{ V<13{ V>3{ VpD3{ VPPBT3{ V<&3{ V>3{ V>P s@kcsP@g@g@ scscsPnogger::maybe_delete_log_file( $debug_enabled ); } } /** * Forces the correct file type for JSON file if the WP checks is incorrect * * @since 3.2.3.1 * @author Gregory Viguier * * @param array $wp_check_filetype_and_ext File data array containing 'ext', 'type', and * 'proper_filename' keys. * @param string $file Full path to the file. * @param string $filename The name of the file (may differ from $file due to * $file being in a tmp directory). * @param array $mimes Key is the file extension with value as the mime type. * @return array */5@P7@,@@P7@(/@SL3{ VP?3{ V` -H3{ Vp=;3{ VPPu;3{ V``u<3{ V13{ Vp-H3{ V`=0' ); $presentation = $this->get_current_page_presentation(); return $presentation->robots; } /** * Used for static home and posts pages as well as singular titles. * * @param object|null $object If filled, object to get the title for. * * @return string The content title. */ private function get_title( $object = null ) { _deprecated_function( __METHOD__, 'Yoast SEO 14.0' ); $presentation = $this->get_current_page_presentation(); $title = $presentation->title; return $this->replace_vars->replace( $title, $presentation->source ); } /** * This function adds paging details to the title. * * @param string $sep Separator used in the title. * @param string $seplocation Whether the separator should be left or right. * @param string $title The title to append the paging info to. * * @return string */ public function add_paging_to_title( $sep, $seplocation, $title ) { _deprecated_function( __METHOD__, 'Yoast SEO 14.0' ); return $title; } /** * Add part to title, while ensuring that the $seplocation variable is respected. * * @param string $sep Separator used in the title. * @param string $seplocation Whether the separator should be left or right. * @param string $title The title to append the title_part to. * @param string $title_part The part to append to the title. * * @return string */ public function add_to_title( $sep, $seplocation, $title, $title_part ) { _deprecated_function( __METHOD__, 'Yoast SEO 14.0' ); if ( $seplocation === 'right' ) { return $title . $sep . $title_part; } return $title_part . $sep . $title; } /** * Adds 'prev' and 'next' links to archives. * * @link http://googlewebmastercentral.blogspot.com/2011/09/pagination-with-relnext-and-relprev.html * * @return void */ public function adjacent_rel_links() { _deprecated_function( __METHOD__, 'Yoast SEO 14.0' ); $presentation = $this->get_current_page_presentation(); $rel_prev_presenter = new Rel_Prev_Presenter(); $rel_prev_presenter->presentation = $presentation; $rel_prev_presenter->helpers = $this->helpers; $rel_prev_presenter->replace_vars = $this->replace_vars; echo $rel_prev_presenter->present(); $rel_next_presenter = new Rel_Next_Presenter(); $rel_next_presenter->presentation = $presentation; $rel_next_presenter->helpers = $this->helpers; $rel_next_presenter->replace_vars = $this->replace_vars; echo $rel_next_presenter->present(); } /** * Outputs the meta description element or returns the description text. * * @param bool $echo Echo or return output flag. * * @return string */ public function metadesc( $echo = true ) { _deprecated_function( __METHOD__, 'Yoast SEO 14.0' ); $presentation = $this->get_current_page_presentation(); $presenter = new Meta_Description_Presenter(); $presenter->presentation = $presentation; $presenter->helpers = $this->helpers; $presenter->replace_vars = $this->replace_vars; if ( ! $echo ) { return $presenter->get(); } $presenter->present(); } /** * Returns the current page presentation. * * @return Indexable_Presentation The current page presentation. */ private function get_current_page_presentation() { $context = $this->context_memoizer->for_current_page(); /** This filter is documented in src/integrations/front-end-integration.php */ return apply_filters( 'wpseo_frontend_presentation', $context->presentation, $context ); } }