Title: ECORP Internal Links
Author: ecorpagency
Published: <strong>3 augusts, 2026</strong>
Last modified: 16 augusts, 2026

---

Meklēt spraudņus

![](https://ps.w.org/ecorp-internal-links/assets/banner-772x250.jpg?rev=3632957)

![](https://ps.w.org/ecorp-internal-links/assets/icon-256x256.png?rev=3632969)

# ECORP Internal Links

 Autors [ecorpagency](https://profiles.wordpress.org/ecorpagency/)

[Lejupielādēt](https://downloads.wordpress.org/plugin/ecorp-internal-links.1.2.0.zip)

 * [Sīkāka informācija](https://lv.wordpress.org/plugins/ecorp-internal-links/#description)
 * [Atsauksmes](https://lv.wordpress.org/plugins/ecorp-internal-links/#reviews)
 *  [Uzstādīšana](https://lv.wordpress.org/plugins/ecorp-internal-links/#installation)
 * [Attīstība](https://lv.wordpress.org/plugins/ecorp-internal-links/#developers)

 [Atbalsts](https://wordpress.org/support/plugin/ecorp-internal-links/)

## Apraksts

ECORP Internal Links builds your internal linking silo for you. You define
 a list
of keyword to URL rules once, and every matching keyword is turned into a link as
your content is rendered. Your posts are never modified in the database: the plugin
works on output only, so removing it removes every generated link.

#### What it does

 * Links each keyword on its **first occurrence only**, so a page never repeats 
   the same link.
 * Enforces a **global limit** of automatically inserted links per post.
 * Never lets a post link to itself: a rule pointing at the page being displayed
   
   is skipped, and does not consume the per-post limit.
 * Optionally opens links in a new tab (`target="_blank"` plus `rel="noopener"`).
 * Optionally marks inserted links as `rel="nofollow"`.
 * Runs only on the post types you enable.

#### Where it will never insert a link

Correctness here matters more than coverage, so the matcher skips every context

where an automatic link would be invalid or unwanted:

 * inside an existing `<a>` element, so links are never nested;
 * inside `<h1>` to `<h6>` headings;
 * inside `<script>`, `<style>`, `<code>`, `<pre>`, `<kbd>` and `<samp>`;
 * inside form controls such as `<textarea>`, `<button>`, `<select>`, `<option>`
   and `<label>`;
 * inside `<iframe>`, `<svg>`, `<noscript>` and `<template>`;
 * inside HTML comments;
 * inside **any HTML attribute**, including `alt`, `title`, `src` and `href`.

#### Built for real content

 * Matching is accent aware and case insensitive, and the original casing of the
   
   matched text is preserved in the anchor.
 * Word boundaries are Unicode aware: a rule for `SEO` never matches inside
    SEOquencer,
   and a rule for `référencement` never matches `référencements`.
 * Longer expressions win over shorter ones, so `internal linking strategy` is
    
   preferred over `internal linking` when both are defined.
 * Multi word keywords still match across a line break or a non breaking space.

#### Performance

Rendered output is stored in the WordPress object cache, keyed by a version
 number
that is bumped whenever you save your settings. On a site with a persistent object
cache the transformation runs once per post revision; without one, repeated `the_content`
calls within the same request are still served from memory.

#### Developer filters

 * `ecorp_il_should_process`: decide per post whether automatic linking runs.
 * `ecorp_il_filter_priority`: change the `the_content` hook priority (default 20).
 * `ecorp_il_protected_tags`: adjust the list of protected elements.
 * `ecorp_il_link_attributes`: change the attributes of every inserted link.
 * `ecorp_il_link_rel`: change the `rel` values of every inserted link.
 * `ecorp_il_cache_ttl`: change the cache lifetime.
 * `ecorp_il_selectable_post_types`: change the post types offered in the settings
   screen.

This plugin is built and maintained by [ECORP](https://ecorp-agency.com).

## Ekrānuzņēmumi

[⌊The settings screen: keyword to URL rules, the per-post link limit, link attributes
and the post types automatic linking runs on.⌉⌊The settings screen: keyword to URL
rules, the per-post link limit, link attributes and the post types automatic linking
runs on.⌉[

The settings screen: keyword to URL rules, the per-post link limit, link attributes
and the post types automatic linking runs on.

## Uzstādīšana

 1. Upload the plugin folder to `/wp-content/plugins/`, or install it from the Plugins
    screen.
 2. Activate the plugin.
 3. Go to **Settings > Internal Links**.
 4. Add your keyword to URL rules, pick a maximum number of links per post, and select
    the post types to enable.

## BUJ

### Does this modify my posts?

No. The plugin filters `the_content` at render time. Your post content in the
 database
is untouched, and deactivating the plugin removes every generated link.

### Why is my keyword not being linked?

Check the following, in order:

 1. The post type of the page is enabled in the settings.
 2. The maximum number of links per post has not already been reached by earlier rules.
 3. The keyword does not appear only inside a heading, an existing link, a code block
    or an HTML attribute.
 4. The keyword appears as a whole word. `SEO` will not match inside `SEOquencer`.
 5. The rule does not point at the page you are looking at. A post is never linked 
    to itself.

### Will a post link to itself?

No. When a rule targets the page currently being displayed, it is skipped. The
 
comparison ignores the protocol, a leading `www.` and a trailing slash, so the rule
is recognised whichever form you pasted. A link to an anchor on the same page, such
as `/my-post/#section`, is still allowed.

### In which order are the rules applied?

Rules are applied in the order the keywords appear in the content, not in the
 order
they are listed in the settings. When two rules could match the same text, the longer
keyword wins.

### Can I disable linking on a specific post?

Yes, with a small snippet using the `ecorp_il_should_process` filter:

    ```
    add_filter( 'ecorp_il_should_process', function ( $enabled, $post_id ) {
        return get_post_meta( $post_id, 'disable_autolinks', true ) ? false : $enabled;
    }, 10, 2 );
    ```

### Does it work with the block editor?

Yes. The filter runs after blocks and shortcodes have been rendered, so it
 operates
on the final HTML.

## Atsauksmes

Par šo spraudni nav atsauksmju.

## Autori un izstrādātāji

“ECORP Internal Links” ir atvērtā pirmkoda programmatūra. Šo spraudni ir veidojuši
šādi cilvēki.

Līdzdalībnieki

 *   [ ecorpagency ](https://profiles.wordpress.org/ecorpagency/)

[Tulkot “ECORP Internal Links&#8221 savā valodā.](https://translate.wordpress.org/projects/wp-plugins/ecorp-internal-links)

### Vai jūs interesē attīstība?

[Pārlūkojiet kodu](https://plugins.trac.wordpress.org/browser/ecorp-internal-links/),
apmeklējiet[ SVN krātuvi ](https://plugins.svn.wordpress.org/ecorp-internal-links/)
vai abonējiet[ attīstības žurnālu](https://plugins.trac.wordpress.org/log/ecorp-internal-links/),
ko izveidojis [RSS](https://plugins.trac.wordpress.org/log/ecorp-internal-links/?limit=100&mode=stop_on_copy&format=rss).

## Izmaiņu žurnāls

#### 1.2.0

 * First release on the WordPress.org plugin directory.
 * Renamed to ECORP Internal Links. Option keys, filters and CSS classes now use
   
   the `ecorp_il` prefix.

#### 1.1.0

 * A post is never linked to itself. A rule targeting the page being displayed is
   
   skipped, and does not consume the per-post link limit.
 * Settings screen restyled to the ECORP brand guidelines.

#### 1.0.0

 * Initial release.

## Meta

 *  Versija **1.2.0**
 *  Pēdējo reizi atjaunots: **pirms 7 dienām**
 *  Aktīvās instalācijas: **Mazāk par 10**
 *  WordPress versija ** 5.8 vai jaunāka **
 *  Pārbaudīts līdz: **7.1**
 *  PHP versija ** 7.4 vai jaunāka **
 *  Valoda
 * [English (US)](https://wordpress.org/plugins/ecorp-internal-links/)
 * Birkas:
 * [anchor text](https://lv.wordpress.org/plugins/tags/anchor-text/)[autolink](https://lv.wordpress.org/plugins/tags/autolink/)
   [interlinking](https://lv.wordpress.org/plugins/tags/interlinking/)[internal links](https://lv.wordpress.org/plugins/tags/internal-links/)
   [seo](https://lv.wordpress.org/plugins/tags/seo/)
 *  [Papildu skats](https://lv.wordpress.org/plugins/ecorp-internal-links/advanced/)

## Vērtējumi

Vēl nav iesniegta neviena atsauksme.

[Your review](https://wordpress.org/support/plugin/ecorp-internal-links/reviews/#new-post)

[Skatīt visasatsauksmes](https://wordpress.org/support/plugin/ecorp-internal-links/reviews/)

## Līdzdalībnieki

 *   [ ecorpagency ](https://profiles.wordpress.org/ecorpagency/)

## Atbalsts

Jums ir kaut kas ko teikt? Vajadzīga palīdzība?

 [Skatīt atbalsta forumu](https://wordpress.org/support/plugin/ecorp-internal-links/)