For WordPress
GitHub
Home Modules Documentation FAQ Download
Docs Link Management

Link Management

Comprehensive control over link behavior with automatic nofollow and new tab settings.

Overview

Comprehensive control over link behavior with automatic nofollow, new tab settings, and exception management.

Link Management Settings
Link Management settings interface

Features

FeatureDescription
Auto NofollowAutomatically add rel="nofollow" to external links
External New TabOpen external links in new tab with target="_blank"
Internal New TabOpen internal links in new tab (with exceptions)
Exception URLsSkip nofollow for trusted domains/URLs
JSON PresetsLoad exception lists from JSON files
Database UpdateBulk-add nofollow to existing content

Exception URL Format

exception-urls.json
{ "urls": [ "example.com", "trusted-partner.org", "https://specific-url.com/page" ] }

Developer Filters

Add exception domains
add_filter( 'functionalities_exception_domains', function( $domains ) { $domains[] = 'my-trusted-site.com'; return $domains; });