WPIntell

Source evidence

do not output target=”_self”

Autolinks Manager – SEO Auto Linker · support · 2025-09-01T08:42:00+00:00

questionsentiment
lowseverity
0.52relevance
2replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

3 / 16 rows with source links

18.8% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

13 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
wpshushu unresolved
Is there a way to stop the plugin from outputting the target=”_self” property? Hello wpshushu, At the moment, there isn’t an option available to achieve this. I’ve created a ticket to track the request, but I can’t provide a release date or guarantee that it will be implemented. If you’d like to make the adjustment directly in the plugin, it’s fairly simple: Open the file: /daext-autolinks-manager/shared/class-daextam-shared.php Go to line 1032 inside the preg_replace_callback_2() method Set the $open_new_tab variable to an empty string. Note that this adjustment is valid for version 1.10.10: // Get the "open_new_tab" value. if ( 1 === intval( $this->autolinks_ca[ $autolink_id ]['open_new_tab'], 10 ) ) { $open_new_tab = 'target="_blank"'; } else { $open_new_tab = ''; } This reply was modified 8 months, 4 weeks ago by Dani . This reply was modified 8 months, 4 weeks ago by Dani . @devdani Possible to provide a HOOK for future updates? Thanks!

Comments

2 shown
Dani 2025-09-02T07:48:00+00:00

Hello wpshushu, At the moment, there isn’t an option available to achieve this. I’ve created a ticket to track the request, but I can’t provide a release date or guarantee that it will be implemented. If you’d like to make the adjustment directly in the plugin, it’s fairly simple: Open the file: /daext-autolinks-manager/shared/class-daextam-shared.php Go to line 1032 inside the preg_replace_callback_2() method Set the $open_new_tab variable to an empty string. Note that this adjustment is valid for version 1.10.10: // Get the "open_new_tab" value. if ( 1 === intval( $this->autolinks_ca[ $autolink_id ]['open_new_tab'], 10 ) ) { $open_new_tab = 'target="_blank"'; } else { $open_new_tab = ''; } This reply was modified 8 months, 4 weeks ago by Dani . This reply was modified 8 months, 4 weeks ago by Dani .

wpshushu 2025-09-02T08:56:00+00:00

@devdani Possible to provide a HOOK for future updates? Thanks!