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