You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 22, 2021. It is now read-only.
Would it make sense to not process the plugin if the request was for the original domain? I notice that canonicals are inserted for original domain too - meaning the plugin is processing original domain pages as well.
private function __construct()
{
$this->initAttributes();
// Adding this could skip original domain processing, not?
if($this->domain == $this->originalDomain) {
return;
}
$this->hookActions();
$this->hookFilters();
$this->hookShortcodes();