PluginProbe ʕ •ᴥ•ʔ
Custom Post Type Permalinks / 2.1.1
Custom Post Type Permalinks v2.1.1
1.2.0 1.3.0 1.3.1 1.4.0 1.5.1 1.5.2 1.5.4 2.0.0 2.0.1 2.0.2 2.1.1 2.1.2 2.1.3 2.2.0 3.0.0 3.0.1 3.1.0 3.1.1 3.1.3 3.1.4 3.1.5 3.2.0 3.2.1 3.2.2 3.3.0 3.3.1 3.3.4 3.3.5 3.4.0 3.4.0-rc.1 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.5.2 3.5.3 3.5.4 3.5.5 trunk 0.6 0.6.1 0.6.2 0.7 0.7.1 0.7.10 0.7.2 0.7.2.1 0.7.3 0.7.3.1 0.7.4 0.7.4.1 0.7.5 0.7.5.1 0.7.5.2 0.7.5.6 0.7.6 0.7.8 0.7.9 0.7.9.1 0.7.9.2 0.8 0.8.1 0.8.6 0.8.7 0.8.7.1 0.8.7.5 0.8.7.6 0.9 0.9.1 0.9.2.1 0.9.3.1 0.9.3.2 0.9.3.3 0.9.5 0.9.5.1 0.9.5.2 0.9.5.3 0.9.5.4 0.9.5.6 0.9.6 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0
custom-post-type-permalinks / readme.txt
custom-post-type-permalinks Last commit date
CPTP 9 years ago assets 9 years ago language 9 years ago .svnignore 9 years ago CONTRIBUTING.md 9 years ago CPTP.php 9 years ago codesniffer.ruleset.xml 9 years ago composer.json 9 years ago custom-post-type-permalinks.php 9 years ago license.txt 12 years ago readme.md 9 years ago readme.txt 9 years ago screenshot-1.png 14 years ago
readme.txt
260 lines
1 === Custom Post Type Permalinks ===
2 Contributors: Toro_Unit,inc2734,ixkaito,keita_kobayashi
3 Donate link: http://www.amazon.co.jp/registry/wishlist/COKSXS25MVQV
4 Tags: permalink,permalinks,custom post type,custom taxonomy,cms
5 Requires at least: 4.3
6 Tested up to: 4.6
7 Stable tag: 2.1.1
8 License: GPLv2 or Later
9
10 Edit the permalink of custom post type.
11
12 == Description ==
13
14 Custom Post Type Permalinks allow you edit the permalink structure of custom post type.
15
16 Change custom taxonomy archive's permalink to "example.org/post_type/taxonomy_name/term_slug". Can disable this fix.
17
18 And support wp_get_archives( "post_type=foo" ).
19
20 [This Plugin published on GitHub.](https://github.com/torounit/custom-post-type-permalinks)
21
22 Donation: Please send [bitcoin](https://blockchain.info/ja/address/3HwkojX2pd9wc5kPFdXnDXMTNbgBmPRygX) or amazon.co.jp Gift to donate[at]torounit.com.
23
24
25 = Translators =
26 * Japanese(ja) - [Toro_Unit](http://www.torounit.com/)
27 * French(fr_FR) - [Geoffrey Crofte](http://geoffrey.crofte.fr/)
28 * Russian(ru_RU) - [Olart](http://olart.ru), [Natali_Z](https://profiles.wordpress.org/natali_z)
29
30 = Also checkout =
31
32 * [Simple Post Type Permalinks](https://wordpress.org/plugins/simple-post-type-permalinks/)
33
34
35 == Setting on Code ==
36
37 Example:
38
39 `
40 register_post_type( 'foo',
41 array(
42 "public" => true,
43 'has_archive' => true,
44 "rewrite" => [
45 "with_front" => true
46 ],
47 "cptp_permalink_structure" => "%post_id%"
48 )
49 );
50 `
51
52
53 == Installation ==
54
55 * Download the custom-post-type-permalinks.zip file to your computer.
56 * Unzip the file.
57 * Upload the `custom-post-type-permalinks` directory to your `/wp-content/plugins/` directory.
58 * Activate the plugin through the 'Plugins' menu in WordPress.
59
60 That's it. You can access the permalinks setting by going to *Settings -> Permalinks*.
61
62
63 == Screenshots ==
64
65 * screenshot-1.png
66
67
68 == Changelog ==
69
70 = 2.1.0 =
71
72 * Create rewrite rule on `registered_post_type` and `registered_taxonomy` action.
73 * Not create taxonomy rewrite rule when `rewrite` is `false`.
74
75 = 2.0.2 =
76
77 * pointer html bug fix.
78
79 = 2.0.0 =
80
81 * `add_rewrite_rules` on `wp_loaded` priority is changed 10 from 100. [fix issue #53](https://github.com/torounit/custom-post-type-permalinks/issues/53)
82 * Replace wp_get_post_terms by get_the_terms. [fix issue #55](https://github.com/torounit/custom-post-type-permalinks/issues/55)
83 * Fix bug register_uninstall_hook called twice on each page. [fix issue #56](https://github.com/torounit/custom-post-type-permalinks/issues/56)
84
85 = 1.5.4 =
86
87 * Fixed removed parent post problem.
88
89
90 = 1.5.3 =
91
92 * readme fix.
93
94 = 1.5.0 =
95
96 * Tested for 4.5.
97 * Add filter CPTP_set_{$module_name}_module.
98
99
100 = 1.4.0 =
101 * Fix Translation Problem.
102
103
104 = 1.3.1 =
105 * bugfix `wp_get_archives`.
106
107 = 1.3.0 =
108 * bugfix for polylang.
109
110 = 1.2.0 =
111 * Add filter `cptp_post_type_link_priority`, `cptp_term_link_priority`, `cptp_attachment_link_priority`.
112 * Add action `CPTP_registered_modules`.
113
114 = 1.1.0 =
115 * WPML Test. thanks [keita_kobayashi](https://profiles.wordpress.org/keita_kobayashi) !
116
117 = 1.0.5 =
118 * admin bug fix. thanks [ixkaito](https://profiles.wordpress.org/ixkaito) !
119 * Translation Update Thanks [Natali_Z](https://profiles.wordpress.org/natali_z) !
120
121 = 1.0.4 =
122 * option bug fix.
123
124 = 1.0.3 =
125 * add category rule, if only attached category to post type.
126
127 = 1.0.2 =
128 * category slug bug fix.
129
130 = 1.0.0 =
131 * Set Permalink enable register_post_type.
132 * Enable add post type query to taxonomy archives.
133 * Use Class Autoloader.
134 * Create Rewrite Rule on `wp_loaded` action.
135 * WordPress Code Format Fix.
136 * CPTP_Module_Permalink Bug Fix.
137 * Bug Fix.
138 * Use Semantic Versioning.
139 * Date Structure Fix.
140 * Use Category Base.
141
142 = 0.9.7 =
143 * Adding date slug only conflicting %post_id%.
144 * Change taxonomy link rewrite rule. Use post_type.
145 * Can change template include custom taxonomy.
146
147 = 0.9.6 =
148 * Category and author.
149 * French Transration. Thanks Geoffrey!
150 * Hierarchial Term Fix.
151
152 = 0.9.5.6 =
153 * Strict Standard Error Fix.
154
155 = 0.9.5.4 =
156 * archive link bug fix.
157 * Tested Up 3.9
158
159 = 0.9.5.3 =
160 * “/”bug fix.
161 * taxonomy tmplate bug fix.
162
163 = 0.9.5.2 =
164 * Archives Rewrite Fix.
165
166 = 0.9.5.1 =
167 * Admin Bug Fix.
168
169 = 0.9.5 =
170 * Big change plugin architecture.
171 * Show has_archive, with_front.
172
173 = 0.9.4 =
174 * Internal release.
175
176 = 0.9.3.3 =
177 * has_archive Bug Fix.
178 * Fixed a bug in the link, including the extension.
179
180 = 0.9.3.2 =
181 * wp_get_archives Bug Fix.
182
183 = 0.9.3.1 =
184 * Tested 3.6
185 * Bug Fix.
186
187
188 = 0.9.3 =
189 * Admin page fix.
190 * slngle pageing link fix.
191 * Add Russian translation.
192
193
194 = 0.9 =
195 * Add custom post type archive only has_archive->true
196 * Change method name.
197 * Change hook custom post link.
198 * Use Slug in wp_get_archive().
199 * Fix attachment link.
200
201
202 = 0.8.7 =
203 * Translate Bug Fix.
204
205 = 0.8.6 =
206 * Paging Bug Fix.
207 * Commnent Paging.
208 * Show pointer.
209 *
210
211 = 0.8.1 =
212 * Bug Fix.
213
214 = 0.7.9.1 =
215 * Support Comment permalink.
216 * Small change in setting page.
217 * Change default value.
218 * Bug Fix.
219
220 = 0.7.8 =
221 * Bug fix.
222
223
224 = 0.7.7 =
225 * Bug fix.
226
227 = 0.7.6 =
228 * Add parent's slug to hierarchical post type.
229
230
231 = 0.7.5 =
232 * Add ability to disable to change custom taxonomy archive's permalink.
233
234
235 = 0.7.4 =
236 * Bug fix taxonomy rewrite.
237
238
239 = 0.7.3 =
240 * Changed part for saving the data.
241
242 = 0.7.2 =
243 * Reweite bug fix.
244 * Prewview bug fix.
245
246 = 0.7.1 =
247 * Bug fix.
248
249 = 0.7 =
250 * Add %{taxonomy}% tag.
251 * A large number of Bug Fix.
252 * Change Setting Page. Use Setting API.
253
254
255 = 0.6.2 =
256 * Fix %author% tag.
257
258 = 0.6 =
259 * First release on wordpress.org
260