15 lines
331 B
PHP
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 );
|
|
}
|
|
} |