Linux 软件免费装
Banner图

ECORP Internal Links

开发者 ecorpagency
更新时间 2026年8月3日 21:57
PHP版本: 7.4 及以上
WordPress版本: 7.0
版权: GPLv2 or later
版权网址: 版权信息

标签

seo internal links autolink anchor text interlinking

下载

1.2.0

详情介绍:

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 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: Built for real content 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 This plugin is built and maintained by ECORP.

安装:

  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.

升级注意事项:

1.2.0 First directory release. Settings are stored under new option keys. 1.1.0 Stops posts from linking to themselves. 1.0.0 Initial release.

常见问题:

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.

更新日志:

1.2.0 1.1.0 1.0.0