Linkable

外掛說明

Linkable is a lightweight WordPress plugin that automates internal linking by converting defined keywords into links to selected posts or pages.

Core functionality:
* Automatically links keywords to chosen posts or pages
* Works on singular posts and pages by filtering the_content at priority 20
* Searches for keyword matches inside <p>, <li>, <b>, <em>, and <i> tags
* Skips self-links by excluding the current post from the keyword map
* Uses the Yoast SEO title for link tooltips when Yoast is active, otherwise falls back to the WordPress title
* Preserves existing <a> tags and shortcodes by backing them up before processing and restoring them afterward

Keyword management:
* Keywords are stored per post and per page as JSON in the linkable_tags post meta field
* linkable_tags is registered with REST support, sanitized via sanitize_text_field, and restricted to users with edit_posts

Settings:
* Accessible via Settings Linkable
* max_links_per_target: limits how many times the same target can be linked from one post (default 1)
* first_occurrence_only: when enabled, each keyword is linked only once per post

Performance:
* Builds a global keyword map from all published posts and pages with linkable_tags
* Caches the keyword map with a transient (global_linkable_tag_map) for one hour
* Query optimized to fetch only IDs and avoid unnecessary meta/term caching

Editor compatibility:
* Works with both the block editor and the classic editor
* Enqueues an admin sidebar panel script (static/js/admin-sidebar-panel.js) with WordPress dependencies and versioning via filemtime

Security:
* URLs are properly escaped with esc_url
* Link titles are sanitized and HTML-escaped
* Meta registration includes capability and sanitization checks

License

This plugin is licensed under the GPLv2 or later.

安裝方式

  1. Upload the plugin to the /wp-content/plugins/ directory or install via WordPress admin
  2. Activate the plugin
  3. Go to any post or page and add keywords in the Linkable panel (in the sidebar)
  4. Configure plugin settings under Settings > Linkable

常見問題集

Does it support custom post types?

Not yet, but it’s on the roadmap.

Does it work with shortcodes and existing links?

Yes – existing links and shortcodes are safely ignored during replacement.

Does it slow down my site?

No – it uses transients and in-memory caching to keep things fast.

使用者評論

2025 年 8 月 27 日 1 則留言
I’ve tried different ways to manage internal links, but most solutions are either too heavy or too complicated. Linkable just works. You add your keywords, point them to the right page, and the plugin automatically takes care of the rest. Super simple, lightweight, and a real time-saver if you want to keep your internal link structure consistent. Great for SEO and content sites where manual linking quickly becomes a pain.
閱讀全部 3 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈Linkable〉的開發相關工作。

參與者

〈Linkable〉外掛目前已有 1 個本地化語言版本。 感謝全部譯者為這個外掛做出的貢獻。

將〈Linkable〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

1.0.0

  • First public release
  • Internal linking based on keywords
  • Settings page with basic controls