class-wpml-tm-post-view-link-anchor.php
331 Bytes
<?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 );
}
}