Overview
The Link Management module provides comprehensive control over link behavior with automatic nofollow, new tab settings, and exception management.

Features
- 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
Exception URL Format
{
"urls": [
"example.com",
"trusted-partner.org",
"https://specific-url.com/page"
]
}
Developer Filters
add_filter( 'functionalities_exception_domains', function( $domains ) {
$domains[] = 'my-trusted-site.com';
return $domains;
});