| 开发者 | ecorpagency |
|---|---|
| 更新时间 | 2026年8月3日 21:57 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 7.0 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
target="_blank" plus rel="noopener").rel="nofollow".<a> element, so links are never nested;<h1> to <h6> headings;<script>, <style>, <code>, <pre>, <kbd> and <samp>;<textarea>, <button>, <select>, <option> and <label>;<iframe>, <svg>, <noscript> and <template>;alt, title, src and href.SEO never matches inside
SEOquencer, and a rule for référencement never matches référencements.internal linking strategy is
preferred over internal linking when both are defined.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./wp-content/plugins/, or install it from the Plugins screen.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.
Check the following, in order:
SEO will not match inside SEOquencer.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.
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.
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 );
Yes. The filter runs after blocks and shortcodes have been rendered, so it operates on the final HTML.
ecorp_il prefix.