PluginProbe ʕ •ᴥ•ʔ
Custom Post Type Permalinks / 1.3.0
Custom Post Type Permalinks v1.3.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.md
custom-post-type-permalinks Last commit date
CPTP 10 years ago language 10 years ago .svnignore 10 years ago CPTP.php 10 years ago custom-post-type-permalinks.php 10 years ago license.txt 12 years ago readme.md 10 years ago readme.txt 10 years ago screenshot-1.png 14 years ago
readme.md
254 lines
1 # Custom Post Type Permalinks
2 Donate link: http://www.amazon.co.jp/registry/wishlist/COKSXS25MVQV
3 License: GPLv2 or Later
4
5 Edit the permalink of custom post type.
6
7
8 [](https://travis-ci.org/torounit/custom-post-type-permalinks![Build Status](https://travis-ci.org/torounit/custom-post-type-permalinks.svg)](https://travis-ci.org/torounit/custom-post-type-permalinks](https://travis-ci.org/torounit/custom-post-type-permalinks)
9 [](https://wordpress.org/plugins/custom-post-type-permalinks/![](https://img.shields.io/wordpress/plugin/dt/custom-post-type-permalinks.svg)](https://wordpress.org/plugins/custom-post-type-permalinks/](https://wordpress.org/plugins/custom-post-type-permalinks/)
10 [](https://wordpress.org/plugins/custom-post-type-permalinks/![](https://img.shields.io/wordpress/v/custom-post-type-permalinks.svg)](https://wordpress.org/plugins/custom-post-type-permalinks/](https://wordpress.org/plugins/custom-post-type-permalinks/)
11 [](https://wordpress.org/plugins/custom-post-type-permalinks/![](https://img.shields.io/wordpress/plugin/r/custom-post-type-permalinks.svg)](https://wordpress.org/plugins/custom-post-type-permalinks/](https://wordpress.org/plugins/custom-post-type-permalinks/)
12
13 [](https://wordpress.org/plugins/custom-post-type-permalinks/![](http://www.torounit.com/wp-content/uploads/2011/11/banner-772x250.png)](https://wordpress.org/plugins/custom-post-type-permalinks/](https://wordpress.org/plugins/custom-post-type-permalinks/)
14
15 ## Description
16
17 Custom Post Type Permalinks allow you edit the permalink structure of custom post type.
18
19 Change custom taxonomy archive's permalink to "example.org/post_type/taxonomy_name/term_slug". Can disable this fix.
20
21 And support wp_get_archives( "post_type=foo" ).
22
23 [](https://github.com/torounit/custom-post-type-permalinksThis Plugin published on GitHub.](https://github.com/torounit/custom-post-type-permalinks](https://github.com/torounit/custom-post-type-permalinks)
24
25 Donation: Please send amazon.co.jp Gift to donate[at]torounit.com.
26
27 ### Translators
28
29 * French(fr_FR) - [](http://geoffrey.crofte.fr/Geoffrey Crofte](http://geoffrey.crofte.fr/](http://geoffrey.crofte.fr/)
30 * Japanese(ja) - [](http://www.torounit.com/Toro_Unit](http://www.torounit.com/](http://www.torounit.com/)
31 * Russian(ru_RU) - [](http://olart.ruOlart](http://olart.ru](http://olart.ru), [](https://profiles.wordpress.org/natali_zNatali_Z](https://profiles.wordpress.org/natali_z](https://profiles.wordpress.org/natali_z)
32
33 ## Setting on Code
34
35 Example:
36
37 `
38 register_post_type( 'foo',
39 array(
40 "public" => true,
41 'has_archive' => true,
42 "rewrite" => [
43 "with_front" => true
44 ],
45 "cptp_permalink_structure" => "%post_id%"
46 )
47 );
48 `
49
50
51 ## Installation
52
53 * Download the custom-post-type-permalinks.zip file to your computer.
54 * Unzip the file.
55 * Upload the `custom-post-type-permalinks` directory to your `/wp-content/plugins/` directory.
56 * Activate the plugin through the 'Plugins' menu in WordPress.
57
58 That's it. You can access the permalinks setting by going to *Settings -> Permalinks*.
59
60
61 ## Screenshots
62
63 * screenshot-1.png
64
65
66 ## Changelog
67
68 ### 1.2.0
69
70 * Add filter `cptp_post_type_link_priority`, `cptp_term_link_priority`, `cptp_attachment_link_priority`.
71 * Add action `CPTP_registered_modules`.
72
73 ### 1.1.0
74
75 * WPML Test. thanks [](https://profiles.wordpress.org/keita_kobayashikeita_kobayashi](https://profiles.wordpress.org/keita_kobayashi](https://profiles.wordpress.org/keita_kobayashi) !
76
77 ### 1.0.5
78
79 * admin bug fix. thanks [](https://profiles.wordpress.org/ixkaitoixkaito](https://profiles.wordpress.org/ixkaito](https://profiles.wordpress.org/ixkaito) !
80 * Translation Update Thanks [](https://profiles.wordpress.org/natali_zNatali_Z](https://profiles.wordpress.org/natali_z](https://profiles.wordpress.org/natali_z) !
81
82 ### 1.0.4
83
84 * option bug fix.
85
86 ### 1.0.3
87
88 * add category rule, if only attached category to post type.
89
90 ### 1.0.2
91
92 * category slug bug fix.
93
94 ### 1.0.0
95
96 * Set Permalink enable register_post_type.
97 * Enable add post type query to taxonomy archives.
98 * Use Class Autoloader.
99 * Create Rewrite Rule on `wp_loaded` action.
100 * WordPress Code Format Fix.
101 * CPTP_Module_Permalink Bug Fix.
102 * Bug Fix.
103 * Use Semantic Versioning.
104 * Date Structure Fix.
105 * Use Category Base.
106
107 ### 0.9.7
108
109 * Adding date slug only conflicting %post_id%.
110 * Change taxonomy link rewrite rule. Use post_type.
111 * Can change template include custom taxonomy.
112
113 ### 0.9.6
114
115 * Category and author.
116 * French Transration. Thanks Geoffrey!
117 * Hierarchial Term Fix.
118
119 ### 0.9.5.6
120
121 * Strict Standard Error Fix.
122
123 ### 0.9.5.4
124
125 * archive link bug fix.
126 * Tested Up 3.9
127
128 ### 0.9.5.3
129
130 * “/”bug fix.
131 * taxonomy tmplate bug fix.
132
133 ### 0.9.5.2
134
135 * Archives Rewrite Fix.
136
137 ### 0.9.5.1
138
139 * Admin Bug Fix.
140
141 ### 0.9.5
142
143 * Big change plugin architecture.
144 * Show has_archive, with_front.
145
146 ### 0.9.4
147
148 * Internal release.
149
150 ### 0.9.3.3
151
152 * has_archive Bug Fix.
153 * Fixed a bug in the link, including the extension.
154
155 ### 0.9.3.2
156
157 * wp_get_archives Bug Fix.
158
159 ### 0.9.3.1
160
161 * Tested 3.6
162 * Bug Fix.
163
164
165 ### 0.9.3
166
167 * Admin page fix.
168 * slngle pageing link fix.
169 * Add Russian translation.
170
171
172 ### 0.9
173
174 * Add custom post type archive only has_archive->true
175 * Change method name.
176 * Change hook custom post link.
177 * Use Slug in wp_get_archive().
178 * Fix attachment link.
179
180
181 ### 0.8.7
182
183 * Translate Bug Fix.
184
185 ### 0.8.6
186
187 * Paging Bug Fix.
188 * Commnent Paging.
189 * Show pointer.
190 *
191
192 ### 0.8.1
193
194 * Bug Fix.
195
196 ### 0.7.9.1
197
198 * Support Comment permalink.
199 * Small change in setting page.
200 * Change default value.
201 * Bug Fix.
202
203 ### 0.7.8
204
205 * Bug fix.
206
207
208 ### 0.7.7
209
210 * Bug fix.
211
212 ### 0.7.6
213
214 * Add parent's slug to hierarchical post type.
215
216
217 ### 0.7.5
218
219 * Add ability to disable to change custom taxonomy archive's permalink.
220
221
222 ### 0.7.4
223
224 * Bug fix taxonomy rewrite.
225
226
227 ### 0.7.3
228
229 * Changed part for saving the data.
230
231 ### 0.7.2
232
233 * Reweite bug fix.
234 * Prewview bug fix.
235
236 ### 0.7.1
237
238 * Bug fix.
239
240 ### 0.7
241
242 * Add %{taxonomy}% tag.
243 * A large number of Bug Fix.
244 * Change Setting Page. Use Setting API.
245
246
247 ### 0.6.2
248
249 * Fix %author% tag.
250
251 ### 0.6
252
253 * First release on wordpress.org
254