-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
45 lines (31 loc) · 1.82 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
=== Plugin Name ===
Contributors: jivedig, nathanrice, studiopress, cliffpaulick, marksabbath, modernnerd
Tags: redirect, click tracking, custom post types
Requires at least: 3.0
Tested up to: 6.7.1
Stable tag: 0.9.9
Mai Simple URLs is a complete URL management system that allows you create, manage, and track outbound links from your site.
== Description ==
Mai Simple URLs is a complete URL management system that allows you create, manage, and track outbound links from your site by using custom post types and 301 redirects.
It adds a new custom post type to your Admin menu, where you can create, edit, delete, and manage URLs. It stores click counts in the form of a custom field on that custom post type, so it scales really well.
And by avoiding page based redirects, which is the current trend in masking affiliate links, we avoid any issues with permalink conflicts, and therefore avoid any performance issues.
== Installation ==
1. Upload the entire `mai-simple-urls` folder to the `/wp-content/plugins/` directory
1. DO NOT change the name of the `mai-simple-urls` folder
1. Activate the plugin through the 'Plugins' menu in WordPress
1. Navigate to `Settings > Permalinks` and save them. Yes, just click save. Trust me.
1. Navigate to the `Simple URLs` menu
1. Create a new URL, or manage existing URLs.
1. Publish and use the URLs however you want!
== Frequently Asked Questions ==
= When I try to access my new URL, I'm getting a 404 (not found) error =
Sounds like you didn't follow the installation instructions :-)
Navigate to `Settings > Permalinks` and save them. No need to change anything, just click the save button.
= Can I change the URL structure to use something other than /go/ ??? =
Yes, by using the filter `simple_urls_slug`.
Usage:
```
add_filter( 'simple_urls_slug', function(){
return 'redirect-me';
});
```