Ouard
Member
Hello,
I want to get the real canonical url for a post.
Output of the next code is
".../posts/18/"
but I want to get
"../threads/abc.6/page-2#post-18"
I want to get the real canonical url for a post.
Output of the next code is
".../posts/18/"
but I want to get
"../threads/abc.6/page-2#post-18"
PHP:
$app = \XF::app();
$router = $app->router('public');
$post = $app->em()->find('XF:Post', 18);
echo $router->buildLink('canonical:posts', $post);