@;uUp|%tUp>4GU|PpU`>B@H@H@0@@؋@`@@@H@@@\q@@H@@@@8@h@ @ @aP@aP@aP@pU P!@PpU"EuUPP"BCqU`"tPpU`"<qU`"+PpU#EsU[p#RqUp#(rUP#qU#pqUP#tPpU#<qU#+sU [($RqU$(rUP$qU$@qU$>pU@"*tUP &+sUp\`@(R qUPX(puUPP(BPpU(<qU (@qU (>pU@(* qUi)ksUfj0p-RqU0@-@qU@->PpU.>@ @@@:\Qȝ@@x@@=P@P@@@=P@P@@@H@pyH@yH@@H@8H@=P@x@sUpQd@`!R@qU`p!{ sqUp!qU!+sUSd"RSrU0"|@qU">sU8%R qUpP%pPpU%<qU%+sUOd0`&R qU x&pPpU&< uUP&pU %*sUOd(R qU(pPpU(< uUP(sUNdp )R qU `)puUPP)BpU)<qU0P,DuUPP,BpU,<`sUWd,*XGUP,sUPVdp-RSrUp-|@qUp->4GU.|PpU@.>h@h@@@@@8t@`t@خ@@p@@@8@h@|O@*P@h@H[QТpUP:?ТpU`:?ТpUp:?ТpU:?ТpU :?ТpU(:?ТpU0:?ТpU8:?sU m@B*XGUPBsU mPXC*XGU`CsU m pD*XGUpDsU mE*XGUE WP_Post || ! $this->permissions_helper->should_links_be_displayed( $post ) ) { return ''; } return $this->link_builder->build_new_draft_link( $post ); } /** * Generates a Rewrite & Republish permalink for the current post. * * @return string The permalink. Returns empty if the post cannot be copied for Rewrite & Republish. */ public function get_rewrite_republish_permalink() { $post = \get_post(); if ( ! $post instanceof WP_Post || $this->permissions_helper->is_rewrite_and_republish_copy( $post ) || $this->permissions_helper->has_rewrite_and_republish_copy( $post ) || ! $this->permissions_helper->should_links_be_displayed( $post ) ) { return ''; } return $this->link_builder->build_rewrite_and_republish_link( $post ); } /** * Generates a Check Changes permalink for the current post, if it's intended for Rewrite & Republish. * * @return string The permalink. Returns empty if the post does not exist or it's not a Rewrite & Republish copy. */ public function get_check_permalink() { $post = \get_post(); if ( ! $post instanceof WP_Post || ! $this->permissions_helper->is_rewrite_and_republish_copy( $post ) ) { return ''; } return $this->link_builder->build_check_link( $post ); } /** * Generates a URL to the original post edit screen. * * @return string The URL. Empty if the copy post doesn't have an original. */ public function get_original_post_edit_url() { $post = \get_post(); if ( ! $post instanceof WP_Post || ! $this->permissions_helper->is_rewrite_and_republish_copy( $post ) ) { return ''; } $original_post_id = Utils::get_original_post_id( $post->ID ); if ( ! $original_post_id ) { return ''; } return \add_query_arg( [ 'dprepublished' => 1, 'dpcopy' => $post->ID, 'dpnonce' => \wp_create_nonce( 'dp-republish' ), ], \admin_url( 'post.php?action=edit&post=' . $original_post_id ) ); } /** * Generates an array of data to be passed as a localization object to JavaScript. * * @param WP_Post $post The current post object. * * @return array The data to pass to JavaScript. */ protected function generate_js_object( WP_Post $post ) { $is_rewrite_and_republish_copy = $this->permissions_helper->is_rewrite_and_republish_copy( $post ); return [ 'newDraftLink' => $this->get_new_draft_permalink(), 'rewriteAndRepublishLink' => $this->get_rewrite_republish_permalink(), 'showLinks' => Utils::get_option( 'duplicate_post_show_link' ), 'showLinksIn' => Utils::get_option( 'duplicate_post_show_link_in' ), 'rewriting' => ( $is_rewrite_and_republish_copy ) ? 1 : 0, 'originalEditURL' => $this->get_original_post_edit_url(), ]; } /** * Filters the Yoast SEO Premium link suggestions. * * Removes the original post from the Yoast SEO Premium link suggestions * displayed on the Rewrite & Republish copy. * * @param array $suggestions An array of suggestion indexables that can be filtered. * @param int $object_id The object id for the current indexable. * @param string $object_type The object type for the current indexable. * * @return array The filtered array of suggestion indexables. */ public function remove_original_from_wpseo_link_suggestions( $suggestions, $object_id, $object_type ) { if ( $object_type !== 'post' ) { return $suggestions; } // WordPress get_post already checks if the passed ID is valid and returns null if it's not. $post = \get_post( $object_id ); if ( ! $post instanceof WP_Post || ! $this->permissions_helper->is_rewrite_and_republish_copy( $post ) ) { return $suggestions; } $original_post_id = Utils::get_original_post_id( $post->ID ); return \array_filter( $suggestions, static function ( $suggestion ) use ( $original_post_id ) { return $suggestion->object_id !== $original_post_id; } ); } }