# & 1746776997.M370442P3096138.cs279,S=3305280,W=3350816 # h& 1746779125.M288151P3091067.cs279,S=328465,W=333061 # & 1746781037.M761498P3097383.cs279,S=671965,W=681292 # & 1746781782.M996021P3091059.cs279,S=1455567,W=1475569 # X& 1746781876.M963985P3104832.cs279,S=870193,W=882262 # & 1746782292.M671987P3096080.cs279,S=677799,W=687175 # & 1746791397.M64105P3116570.cs279,S=167445,W=169794 # H& 1746794755.M891085P3107935.cs279,S=866600,W=879515 # & 1746794845.M664116P3129940.cs279,S=738196,W=748743 # & 1746798279.M722093P3130116.cs279,S=772111,W=782783 # 8& 1746799120.M941964P3136905.cs279,S=738208,W=748755 # & 1746799134.M621962P3106897.cs279,S=755695,W=766555 # & 1746799903.M679777P3136942.cs279,S=779440,W=790209 # (& 1746811116.M583995P3150904.cs279,S=56219,W=57312 # x& 1747037868.M816655P3454879.cs279,S=782597,W=793410 # & 1747038478.M428660P3463597.cs279,S=857326,W=869634 # & 1747050169.M127608P3463957.cs279,S=684440,W=693937 # h& 1747055520.M604518P3481924.cs279,S=1506545,W=1527286 # & 1747057686.M247113P3493132.cs279,S=29947062,W=30336103 # & 1747058309.M498480P3491138.cs279,S=769296,W=779928 # X& 1747059887.M587676P3494416.cs279,S=907063,W=919666 # & 1747060955.M269100P3496345.cs279,S=1410574,W=1429991 # & 1747119702.M114838P3602871.cs279,S=711621,W=721513 # H& 1747119741.M659421P3602953.cs279,S=794302,W=805356 # & 1747123483.M948654P3603081.cs279,S=766919,W=777523 # & 1747123938.M946446P3597413.cs279,S=173374,W=175889 # 8& 1747127623.M206916P3616604.cs279,S=1509589,W=1530412 # & 1747128050.M497399P3616941.cs279,S=672178,W=681523 # & 1747134878.M809107P3617871.cs279,S=2754104,W=2791927 # (& 1747134921.M415467P3629278.cs279,S=1422583,W=1442265 # x& 1747135651.M482350P3629344.cs279,S=771215,W=781875 # & 1747137329.M365758P3602917.cs279,S=769832,W=780473 # & 1747140826.M769685P3597406.cs279,S=175886,W=178420 # h& 1747141917.M31413P3637588.cs279,S=173065,W=175571 # & 1747143225.M223289P3602913.cs279,S=1398560,W=1417813 # & 1747144124.M28468P3641454.cs279,S=670941,W=680262 # X& 1747145417.M898831P3641885.cs279,S=772993,W=783674 # & 1747145492.M686437P3643888.cs279,S=675643,W=685041 # & 1747148124.M297962P3643915.cs279,S=770552,W=781199 # H& 1747148243.M298657P3641464.cs279,S=776171,W=786894 # & 1747209734.M837372P3749123.cs279,S=672789,W=682137 # & 1747210121.M206570P3751047.cs279,S=677992,W=687376 # 8& 1747211219.M597886P3752728.cs279,S=889620,W=902064 # & 1747211586.M521163P3751927.cs279,S=698078,W=707827 # & 1747217907.M768262P3754074.cs279,S=671854,W=681184 # (& 1747231584.M151992P3784850.cs279,S=212887,W=216113 # x& 1747231839.M261777P3785151.cs279,S=17083,W=17419 # & 1747234633.M715061P3787164.cs279,S=4682143,W=4746361 # & 1747237010.M173654P3765163.cs279,S=886087,W=898319 # h& 1747296581.M586155P3885828.cs279,S=769077,W=779704 # & 1747298733.M777018P3879971.cs279,S=812508,W=823736 # & ks = array(); $item_route = rest_get_route_for_post( $post ); if ( ! empty( $item_route ) ) { $links['self'] = array( 'href' => rest_url( $item_route ), 'embeddable' => true, ); } $links['about'] = array( 'href' => rest_url( 'wp/v2/types/' . $post->post_type ), ); return $links; } /** * Overwrites the default protected title format. * * By default, WordPress will show password protected posts with a title of * "Protected: %s". As the REST API communicates the protected status of a post * in a machine readable format, we remove the "Protected: " prefix. * * @since 5.0.0 * * @return string Protected title format. */ public function protected_title_format() { return '%s'; } /** * Attempts to detect the route to access a single item. * * @since 5.0.0 * @deprecated 5.5.0 Use rest_get_route_for_post() * @see rest_get_route_for_post() * * @param WP_Post $post Post object. * @return string REST route relative to the REST base URI, or empty string if unknown. */ protected function detect_rest_item_route( $post ) { _deprecated_function( __METHOD__, '5.5.0', 'rest_get_route_for_post()' ); return rest_get_route_for_post( $post ); } }