Link Cloaking Plugin for WordPress

This is a plugin for WordPress that can automatically cloak outgoing links in your posts and/or pages.

Download plugin
(Note: May not be compatible with the latest version of Eclipse Link Cloaker.)

Features

  • Choose what to cloak – all links, only the links you specify or no links at all.
  • Choose where to cloak – posts, pages or both.
  • Exception list – links pointing to domains in this list will not be cloaked. For example, this is useful if you have chosen to cloak all links but don’t want to cloak the links to your own domains.
  • Compatible with all browsers – the link cloaker plugin doesn’t use JavaScript so it will work even for visitors that have disabled JS.
  • “Smart” cloaking – relative, ambiguous or malformed URLs will not be cloaked. Better safe than sorry.
  • If desired, you can also add your own cloaked links manually.

Examples

Lets say you’ve got a link you want to be cloaked.

<a href="http://example.com/?affiliate=me">Cloak Me</a>

Once you install the plugin, it will automatically, without requiring any configuration, turn it into a cloaked link when it’s displayed to a visitor:

<a href="http://yoursite.com/goto/Cloak_Me/12/34">Cloak Me</a>

Here’s a live example: Cloak Me

As an alternative to the fully automatic cloaking, you can switch the plugin to “selective cloaking” and tag the links you want to cloak manually:

<a href="http://example.com/?affiliate=me">Cloak Me<!--cloak--></a>

Note: The plugin does not actually edit your posts or permanently modify your links. Instead, it switches them on-the-fly whenever someone views them on your site. When editing a post in the admin panel, you will see the original, uncloaked link.

Download

Version 1.8.4 : link-cloaking-plugin.zip (16 KB)

Requirements :

  • WordPress 2.8 – 3.3
  • mod_rewrite. If “pretty permalinks” work on your blog then you probably have this already.

(Note: May not be compatible with the latest version of Eclipse Link Cloaker.)

Installation

  1. Download the link-cloaking-plugin.zip file.
  2. Unzip the file.
  3. Upload the `link-cloaking-plugin` folder to the `/wp-content/plugins/` directory.
  4. Activate the plugin through the ‘Plugins’ menu in WordPress.
  5. (Optional) Go to Settings -> Link Cloaking and modify the default settings to your liking.

FAQ

Why are some of my links not getting cloaked?

The most common possibilities are:

  • Links in the sidebar, header, comment area and so on can’t be cloaked by the free version of the plugin. It only works on links in page/post body. Upgrade to the premium version to cloak links anywhere on the page.
  • Links added using other plugins, theme features or custom fields are also supported only in the premium version.
  • JavaScript links, as well as Flash and context-sensitive ads are not supported by any version of this plugin.

Why are none of my links getting cloaked?

  • If using “Seletive cloaking”, make sure you have actually marked some links with the <!--cloak--> tag.
  • Double-check that the links in question aren’t added or modified by plugins, the theme, or custom fields.
  • Contact me. You might have found a bug.

The exception list doesn’t seem to work. What could be the problem?

Make sure to enter only domain names in the “Exceptions” box. For example, given a link like “http://example.com/directory/page.html”, the domain name is the “example.com” part. So to prevent the plugin from cloaking that link, add “example.com” (sans quotes) to the “Exceptions” box. Entering the full URL or “http://example.com/” will not work.

Additionally, if some of your links point to example.com and some to www.example.com, you will need to add both of those to the exceptions.

Why do some cloaked links redirect me back to my homepage?

Most likely, your post(s) contain links created or modified by other plugins, the theme, or custom fields. Either remove those links, or upgrade to the premium version.

Why do some cloaked links redirect me back to my homepage?

See the previous question.

Why do cloaked links display a “Not Found” error?

  • Make sure you’re using pretty permalinks.
  • Your .htaccess might be out of date. To update it, go to Settings -> Permalinks and click “Save Changes”.
  • Your hosting company may be blocking browser access to PHP files in the /wp-content/plugins/ directory, usually as a security measure. The free version of the plugin is not compatible with these hosts. Consider using the premium version instead.

I have a question not addressed in this FAQ. What should I do?

Either leave a comment below, or email me directly. My email address can be found on the contact page.

Related posts :

802 Responses to “Link Cloaking Plugin for WordPress”

  1. White Shadow says:

    That is not possible with the free version.

  2. Phil says:

    Such a great plugin, I haven’t been into affiliate marketing for a long time but I never liked using ugly affiliate links or link shortener link tinyurl. Thanks a lot, maybe I’ll upgrade to premium soon.

  3. its not working 🙁

  4. I interesting in Cloaking Plugin, but I wonder is eiligal for google or not. Anyway I like this plugin. Thank you so much

  5. Dan Manherz says:

    Link cloaking plugin is not working on hostgator installation.
    I’m trying to set up static links but they will not save. Works fine on other hosts.

    Dan Manherz

  6. Tony says:

    Is the premium (paid) version wordpress 3 Multi-user (MU) site compatible?

    If it is not, do you plan to make it compatible sometime in the future?

  7. White Shadow says:

    Right now it’s partially compatible with WPMU. That is, the plugin will work, but you will need to configure it separately on each blog.

  8. Tony says:

    What do you mean by “separately on each blog.”?

    Does it mean it cannot be network activated and it needs to be configured on each sub-site?
    or something more involved such as code tweaking is required? (Does it work out of the box?)

  9. White Shadow says:

    It can be network activated, but you still need to log into each sub-site afterwards and enter the license key / adjust the plugin’s configuration to your liking. Basically, it has the minimal “won’t irreversibly break your site if activated on WPMU” degree of compatibility.

    If it turns out that there’s enough demand for better WPMU support, I’ll consider adding it to my to-do list.

  10. Bert says:

    It is not working for me neither. The new links look fine, but when I click them I get a 404-error-page. I deactivated the plugins which could occur with it.
    What plugins give problems?

  11. White Shadow says:

    If you get 404 errors, the first thing to try is re-saving your permalink settings.

  12. […] the URL – you can set the “prefix” part of the URL (see examples […]

  13. game says:

    what code that i edit in .htaccess file

  14. andreasp says:

    great plugin! But I have found a bug in 1.8.2: if you have your backend secured with SSL (https://codex.wordpress.org/Administration_Over_SSL) but not the frontend, then you must also use https in wplc_ajax_url for jquerry/XMLHttpRequest:

    so change wplc_link_cloaking_plugin.php at L464 to:

    echo is_ssl() ? ‘https’ : ‘http’;
    echo preg_replace(‘/^http/’, ”, trailingslashit(WP_PLUGIN_URL) ) . $this->myfolder . ‘/wplc_ajax.php’;

    and then adding “Static Cloaked Links” worked via ssl.

  15. andreasp says:

    p.s. works great with wordpress 3.1

  16. White Shadow says:

    Thanks for reporting this bug; I’ll upload a fixed version shortly.

  17. I’ve been using the old version of Pretty Link – is this better? It seems to have more versatility.
    Thanks

  18. Jim says:

    Has the issues on this plugin been resolved ? Was thinking about using it.

Leave a Reply