Changeset 2961568
- Timestamp:
- 09/01/2023 09:59:28 AM (3 years ago)
- Location:
- hum
- Files:
-
- 4 edited
- 1 copied
-
tags/1.3.2 (copied) (copied from hum/trunk)
-
tags/1.3.2/hum.php (modified) (2 diffs)
-
tags/1.3.2/readme.txt (modified) (4 diffs)
-
trunk/hum.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hum/tags/1.3.2/hum.php
r2892764 r2961568 6 6 * Author: Will Norris 7 7 * Author URI: https://willnorris.com/ 8 * Version: 1.3. 18 * Version: 1.3.2 9 9 * License: MIT 10 10 * License URI: http://opensource.org/licenses/MIT … … 183 183 * PBworks wiki, you could use: 184 184 * 185 * add_filter('hum_redirect_base_w', 186 * create_function('', 'return "http://willnorris.pbworks.com/";')); 185 * add_filter('hum_redirect_base_w', fn() => "http://willnorris.pbworks.com/"); 187 186 * 188 187 * @uses apply_filters() Calls 'hum_redirect_{$type}' action -
hum/tags/1.3.2/readme.txt
r2892764 r2961568 3 3 Tags: shortlink, whistle, diso 4 4 Requires at least: 3.0 5 Tested up to: 6. 26 Stable tag: 1.3. 15 Tested up to: 6.3 6 Stable tag: 1.3.2 7 7 Requires PHP: 5.6 8 8 License: MIT … … 72 72 If you'd like to include your Amazone Affiliate ID in the `/i/` redirect URLs, implement the `amazon_affiliate_id` filter. For example: 73 73 74 add_filter('amazon_affiliate_id', create_function('', 'return "willnorris-20";'));74 add_filter('amazon_affiliate_id', fn() => "willnorris-20"); 75 75 76 76 = Additional Local Types = … … 102 102 You can redirect all traffic for a prefix using a single line of PHP my implementing the `hum_redirect_base_{type}` filter where `{type}` is the prefix to redirect. For example, I redirect all `/w/` URLs to wiki.willnorris.com using: 103 103 104 add_filter('hum_redirect_base_w', 105 create_function('', 'return "http://wiki.willnorris.com/";')); 104 add_filter('hum_redirect_base_w', fn() => "http://wiki.willnorris.com/"); 106 105 107 106 … … 109 108 110 109 Project maintined on github at [willnorris/wordpress-hum](https://github.com/willnorris/wordpress-hum). 110 111 = 1.3.2 = 112 113 - update documentation 111 114 112 115 = 1.3.1 = -
hum/trunk/hum.php
r2892764 r2961568 6 6 * Author: Will Norris 7 7 * Author URI: https://willnorris.com/ 8 * Version: 1.3. 18 * Version: 1.3.2 9 9 * License: MIT 10 10 * License URI: http://opensource.org/licenses/MIT … … 183 183 * PBworks wiki, you could use: 184 184 * 185 * add_filter('hum_redirect_base_w', 186 * create_function('', 'return "http://willnorris.pbworks.com/";')); 185 * add_filter('hum_redirect_base_w', fn() => "http://willnorris.pbworks.com/"); 187 186 * 188 187 * @uses apply_filters() Calls 'hum_redirect_{$type}' action -
hum/trunk/readme.txt
r2892764 r2961568 3 3 Tags: shortlink, whistle, diso 4 4 Requires at least: 3.0 5 Tested up to: 6. 26 Stable tag: 1.3. 15 Tested up to: 6.3 6 Stable tag: 1.3.2 7 7 Requires PHP: 5.6 8 8 License: MIT … … 72 72 If you'd like to include your Amazone Affiliate ID in the `/i/` redirect URLs, implement the `amazon_affiliate_id` filter. For example: 73 73 74 add_filter('amazon_affiliate_id', create_function('', 'return "willnorris-20";'));74 add_filter('amazon_affiliate_id', fn() => "willnorris-20"); 75 75 76 76 = Additional Local Types = … … 102 102 You can redirect all traffic for a prefix using a single line of PHP my implementing the `hum_redirect_base_{type}` filter where `{type}` is the prefix to redirect. For example, I redirect all `/w/` URLs to wiki.willnorris.com using: 103 103 104 add_filter('hum_redirect_base_w', 105 create_function('', 'return "http://wiki.willnorris.com/";')); 104 add_filter('hum_redirect_base_w', fn() => "http://wiki.willnorris.com/"); 106 105 107 106 … … 109 108 110 109 Project maintined on github at [willnorris/wordpress-hum](https://github.com/willnorris/wordpress-hum). 110 111 = 1.3.2 = 112 113 - update documentation 111 114 112 115 = 1.3.1 =
Note: See TracChangeset
for help on using the changeset viewer.