PluginProbe ʕ •ᴥ•ʔ
Custom Post Type Permalinks / 3.1.4
Custom Post Type Permalinks v3.1.4
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 8 years ago assets 8 years ago language 8 years ago .svnignore 8 years ago CONTRIBUTING.md 9 years ago CPTP.php 8 years ago LICENSE 9 years ago circle.yml 8 years ago codesniffer.ruleset.xml 8 years ago composer.json 8 years ago custom-post-type-permalinks.php 8 years ago readme.md 8 years ago readme.txt 8 years ago screenshot-1.png 14 years ago
readme.txt
293 lines
1 === Custom Post Type Permalinks ===
2 Contributors: Toro_Unit,inc2734,ixkaito,keita_kobayashi
3 Donate link: https://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.9
7 Stable tag: 3.1.4
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 [My Wishlist](https://www.amazon.co.jp/registry/wishlist/COKSXS25MVQV)
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 = 3.1.4 =
71 * Test for WordPress 4.9.
72 * PHPCS fix.
73
74 = 3.1.3 =
75 * Test for WordPress 4.8.
76 * Bug fix for attachment link.
77
78 = 3.1.1 =
79 * Bug fix in CPTP_Module_Setting::upgrader_process_complete.
80
81 = 3.1.0 =
82 * Add filter 'CPTP_date_front'.
83 * Fix sort term by `wp_list_sort` .
84
85 = 3.0.0 =
86 * Admin notice on update plugin.
87 * Large bug fix.
88 * no_taxonomy_structure bug fix.
89 * Add default value for options.
90
91 = 2.2.0 =
92
93 * add `CPTP_Util::get_no_taxonomy_structure`.
94
95 = 2.1.3 =
96
97 * Set `no_taxonomy_structure` default true.
98
99 = 2.1.2 =
100
101 * `rewirte => false` post type support.
102
103 = 2.1.0 =
104
105 * Create rewrite rule on `registered_post_type` and `registered_taxonomy` action.
106 * Not create taxonomy rewrite rule when `rewrite` is `false`.
107
108 = 2.0.2 =
109
110 * pointer html bug fix.
111
112 = 2.0.0 =
113
114 * `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)
115 * Replace wp_get_post_terms by get_the_terms. [fix issue #55](https://github.com/torounit/custom-post-type-permalinks/issues/55)
116 * Fix bug register_uninstall_hook called twice on each page. [fix issue #56](https://github.com/torounit/custom-post-type-permalinks/issues/56)
117
118 = 1.5.4 =
119
120 * Fixed removed parent post problem.
121
122
123 = 1.5.3 =
124
125 * readme fix.
126
127 = 1.5.0 =
128
129 * Tested for 4.5.
130 * Add filter CPTP_set_{$module_name}_module.
131
132
133 = 1.4.0 =
134 * Fix Translation Problem.
135
136
137 = 1.3.1 =
138 * bugfix `wp_get_archives`.
139
140 = 1.3.0 =
141 * bugfix for polylang.
142
143 = 1.2.0 =
144 * Add filter `cptp_post_type_link_priority`, `cptp_term_link_priority`, `cptp_attachment_link_priority`.
145 * Add action `CPTP_registered_modules`.
146
147 = 1.1.0 =
148 * WPML Test. thanks [keita_kobayashi](https://profiles.wordpress.org/keita_kobayashi) !
149
150 = 1.0.5 =
151 * admin bug fix. thanks [ixkaito](https://profiles.wordpress.org/ixkaito) !
152 * Translation Update Thanks [Natali_Z](https://profiles.wordpress.org/natali_z) !
153
154 = 1.0.4 =
155 * option bug fix.
156
157 = 1.0.3 =
158 * add category rule, if only attached category to post type.
159
160 = 1.0.2 =
161 * category slug bug fix.
162
163 = 1.0.0 =
164 * Set Permalink enable register_post_type.
165 * Enable add post type query to taxonomy archives.
166 * Use Class Autoloader.
167 * Create Rewrite Rule on `wp_loaded` action.
168 * WordPress Code Format Fix.
169 * CPTP_Module_Permalink Bug Fix.
170 * Bug Fix.
171 * Use Semantic Versioning.
172 * Date Structure Fix.
173 * Use Category Base.
174
175 = 0.9.7 =
176 * Adding date slug only conflicting %post_id%.
177 * Change taxonomy link rewrite rule. Use post_type.
178 * Can change template include custom taxonomy.
179
180 = 0.9.6 =
181 * Category and author.
182 * French Transration. Thanks Geoffrey!
183 * Hierarchial Term Fix.
184
185 = 0.9.5.6 =
186 * Strict Standard Error Fix.
187
188 = 0.9.5.4 =
189 * archive link bug fix.
190 * Tested Up 3.9
191
192 = 0.9.5.3 =
193 * “/”bug fix.
194 * taxonomy tmplate bug fix.
195
196 = 0.9.5.2 =
197 * Archives Rewrite Fix.
198
199 = 0.9.5.1 =
200 * Admin Bug Fix.
201
202 = 0.9.5 =
203 * Big change plugin architecture.
204 * Show has_archive, with_front.
205
206 = 0.9.4 =
207 * Internal release.
208
209 = 0.9.3.3 =
210 * has_archive Bug Fix.
211 * Fixed a bug in the link, including the extension.
212
213 = 0.9.3.2 =
214 * wp_get_archives Bug Fix.
215
216 = 0.9.3.1 =
217 * Tested 3.6
218 * Bug Fix.
219
220
221 = 0.9.3 =
222 * Admin page fix.
223 * slngle pageing link fix.
224 * Add Russian translation.
225
226
227 = 0.9 =
228 * Add custom post type archive only has_archive->true
229 * Change method name.
230 * Change hook custom post link.
231 * Use Slug in wp_get_archive().
232 * Fix attachment link.
233
234
235 = 0.8.7 =
236 * Translate Bug Fix.
237
238 = 0.8.6 =
239 * Paging Bug Fix.
240 * Commnent Paging.
241 * Show pointer.
242 *
243
244 = 0.8.1 =
245 * Bug Fix.
246
247 = 0.7.9.1 =
248 * Support Comment permalink.
249 * Small change in setting page.
250 * Change default value.
251 * Bug Fix.
252
253 = 0.7.8 =
254 * Bug fix.
255
256
257 = 0.7.7 =
258 * Bug fix.
259
260 = 0.7.6 =
261 * Add parent's slug to hierarchical post type.
262
263
264 = 0.7.5 =
265 * Add ability to disable to change custom taxonomy archive's permalink.
266
267
268 = 0.7.4 =
269 * Bug fix taxonomy rewrite.
270
271
272 = 0.7.3 =
273 * Changed part for saving the data.
274
275 = 0.7.2 =
276 * Reweite bug fix.
277 * Prewview bug fix.
278
279 = 0.7.1 =
280 * Bug fix.
281
282 = 0.7 =
283 * Add %{taxonomy}% tag.
284 * A large number of Bug Fix.
285 * Change Setting Page. Use Setting API.
286
287
288 = 0.6.2 =
289 * Fix %author% tag.
290
291 = 0.6 =
292 * First release on wordpress.org
293