How to Remove a WordPress WP.ME Shortlink
Later releases of the WordPress content management system include a plug-in known as JetPack. The JetPack plug-in is primarily a statistics plug-in, but it also includes a few other features, including an automatic WP.ME URL shortener. If you dislike the shortener, or would prefer to use your own shortener, you have a couple of options. You can disable the JetPack plug-in completely, or you can override the URL-shortening function by editing your theme's files.
Instructions
-
Disabling or Removing the JetPack Plug-in
-
1
Log in to your WordPress dashboard. Click on the "JetPack" menu link.
-
2
Click on "Disconnect" if you simply want to disconnect the JetPack plugin. This will disable the WP.ME shortlinks.
-
-
3
Click on "Plugins" if you want to uninstall the JetPack plugin altogether. Click on "Deactivate" next to JetPack, then click on "Delete." Click on "OK."
Manually Removing the WP.ME Shortlinks
-
4
Sign in to your dashboard and click on "Appearance."
-
5
Click on "Editor" then click on the "Functions.php" theme file.
-
6
Paste the following at the bottom of the Functions file, before the closing tag (?>).
remove_action('wp_head', 'shortlink_wp_head');
-
7
Click on "Update." The WP.ME shortlinks will now be removed.
-
1