ada B{gҐaj6"[B dk`J] ;e=:0̰ ^EO.Wz?vY_=/;så7Fgk,fQCBaJF`4g.B b}YɔdtjɁ/iID$GqrY~/ub[v+B\>Ɓj&剬(I*dgBYUХ dP&'˃-ga͚S-&ZLYjbK|dNuS:cj ć8(Op '̧UOs'N!m)@k*UVǵj|ί-߰$pLҳ'[ckW9b?5n.ьkUyN`CH@C^J^'xI_tuafYؑEO95|"樖W * \,:7)Jwx|Cq.'$dϧ3cTwрSQ nI'8ܻrkQK#+Z\rK6$F~ǑB.ߥŝBuKQ:qsO8[[~ݹbګW^Yc ;:2/͕EJSS+ -NdK Y}|N^ |r(mKQ #Apgʬ - m3 šG=V(L^3Iޭu/;K/_MK۠x](J ^UaY|'=,5Đt(|ݒo/}S^gfCbry呁esp|@}3y~ +N~9.rFZgMƒG5v/̻(fӃ؄"?nSv_ >VZ͓V&O#[%`gڑgn.NE| '}1S3+WmX(g=,e2g% N=næpjMSR1̇T_"SP*e\ g\*UmAJʃ瀨(}dIA(00m&v1H$kbӠ_eۉ$d 6jR-hZl1Z5Rm-kV2Ht,A词0+![DH`D000>{א: 5Lcx.w2f/E<):iX: %3掭b >@.ldwXTʠis[ZNUlRVʪؔ:s^7YA%r]Hgx<5Gփ=Yj%7eG''-7`_OoNU+mH KK`QO`]гKjP t_'S䭥 4,P;s"n2@N R'5Xx_y W$2+ް-F1uz ٍx%֝^ZM7{&ZpICVMIBiٱِiJ(fz+0g'D-?5D`XWSLiU_FJx+'&-m5{hrcD }"!T{] v#sG/;3Vdt9s\X]B@`@ʎݽPCs|9䯣Tu%LHsGej=o\oĽ%LA卋Fڅ ?d =1iF6+ R:v}PX# c+ݔh2G:se4N2H2<[reNF7l'ItGֹYA I'x[/;p+MZCYZYՏǬ63eu=tm?ROi4}⫝~u"I_!,]7_e7̀aGNz]O&l22Sb P~?_7 E?uemZJaf4zCUQ[uT, AǵGڗ?)|c0,Q}'ճ6ֆbk|ܤytkfG[gu^Vp܀8Inhfȵnu>RH'LįbU{tIXLr8^lOGviJ$ܴѴ{'߅to_array(); } $rank = WPSEO_Rank::from_numeric_score( $score ); return ( new Score_Result( $title, $rank->get_rank(), $rank->get_inclusive_language_label(), ) )->to_array(); } /** * Returns the title for an indexable, with a fallback. * * @param object $indexable The indexable object. * * @return string The post title. */ private function get_indexable_title( $indexable ): string { if ( ! empty( $indexable->breadcrumb_title ) ) { return $indexable->breadcrumb_title; } return \__( '(no title)', 'wordpress-seo' ); } /** * Retrieves the most recently modified post indexables. * * @param int $number_of_posts The number of posts to retrieve. * * @return array The indexable objects. */ private function get_recent_indexables( int $number_of_posts ): array { return $this->indexable_repository->get_recently_modified_posts( 'post', $number_of_posts, false ); } /** * Extracts and clamps the number of posts from the input. * * @param array $input The input array. * * @return int The clamped number of posts. */ private function get_number_of_posts( array $input ): int { $number = ( $input['number_of_posts'] ?? self::DEFAULT_NUMBER_OF_POSTS ); return \min( self::MAX_NUMBER_OF_POSTS, \max( 1, (int) $number ) ); } }