Comprehensive control over link behavior with automatic nofollow and new tab settings.
Comprehensive control over link behavior with automatic nofollow, new tab settings, and exception management.
| Feature | Description |
|---|---|
| Auto Nofollow | Automatically add rel="nofollow" to external links |
| External New Tab | Open external links in new tab with target="_blank" |
| Internal New Tab | Open internal links in new tab (with exceptions) |
| Exception URLs | Skip nofollow for trusted domains/URLs |
| JSON Presets | Load exception lists from JSON files |
| Database Update | Bulk-add nofollow to existing content |
{
"urls": [
"example.com",
"trusted-partner.org",
"https://specific-url.com/page"
]
}
add_filter( 'functionalities_exception_domains', function( $domains ) {
$domains[] = 'my-trusted-site.com';
return $domains;
});