Files
doitinpoland.com/wp-content/plugins/wpml-translation-management/classes/menu-elements/class-wpml-tm-post-view-link-anchor.php
2023-09-12 21:41:04 +02:00

15 lines
331 B
PHP

<?php
/**
* Class WPML_TM_Post_View_Link_Anchor
*
* Creates post links with a given anchor text, pointing at the front-end
* post view
*/
class WPML_TM_Post_View_Link_Anchor extends WPML_TM_Post_Link_Anchor {
protected function link_target() {
return $this->sitepress->get_wp_api()->get_permalink( $this->post_id );
}
}