setCanonical method

setCanonical the current page, this method used only with getCanonical method.

Basic Usage

The basic usage for setCanonical method.

setCanonical(string $url): $this

Parameters

setCanonical method has 1 required parameter.

$url

This parameter value allowed to set the page canonical URL.

Example Usage

Here is the full example of setCanonical method.

<?php
class Blog extends SENE_Controller {
  public function __construct(){
    parent::__construct();
  }
  public function index(){
    ...
    $this->setCanonical('amp');
    ...
  }
}