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

15 lines
392 B
PHP

<?php
/**
* Class WPML_TM_Post_View_Link_Title
*
* Creates post links with the post title as anchor text, pointing at the front-end
* post view
*/
class WPML_TM_Post_View_Link_Title extends WPML_TM_Post_View_Link_Anchor {
public function __construct( &$sitepress, $post_id ) {
parent::__construct( $sitepress, $post_id,
$sitepress->get_wp_api()->get_the_title( $post_id ) );
}
}