Toro_Unit (Hiroshi Urabe)
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Type Permalinks] How does it work?Dear Aurovrata Venet
Thanks!!!
Forum: Plugins
In reply to: [Custom Post Type Permalinks] How does it work?Please set register_post_type argument to.
register_post_type(array( 'rewrite' => array( 'with_front' => false ), ));
Forum: Plugins
In reply to: [Custom Post Type Permalinks] LocalizationOh, Sorry.
Thanks Translation files!.
Please wait a little.Forum: Plugins
In reply to: [Custom Post Type Permalinks] LocalizationOk. Please e-mail from my site. https://www.torounit.com/contact/
Sorry written in Japanese.
There was a bug in the way of saving the settings.
It was fixed in version 1.0.4.Thanks your report.
Forum: Plugins
In reply to: [Custom Post Type Permalinks] LocalizationIf possible,
Please pull request to my development repository in Github.Forum: Plugins
In reply to: [Simple Post Type Permalinks] How to delete the slash at the end?Please remove slash in wordpress buitin permalink setting.
Forum: Plugins
In reply to: [Custom Post Type Permalinks] Single Post 404sThank you jorisw.
Is correct!if with_front => true and permalink structure /archive/%post_id%,
“/archive/” will be contained in the Custom Post Type Permalink.Forum: Plugins
In reply to: [Custom Post Type Permalinks] Undefined property: CPTP_Module_PermalinkResolved at 1.0.0.
Ok.
Thanks for your Check.
Forum: Plugins
In reply to: [Custom Post Type Permalinks] Single Post 404scannot remove “category”.
if there is not “category”, confrict single page url.
Forum: Plugins
In reply to: [Custom Post Type Permalinks] Archive by custom taxonomyNeed Taxonomy Slug.
Forum: Plugins
In reply to: [Custom Post Type Permalinks] Single Post 404sIf you change the settings related to permanent link, it is necessary to update the Rewrite Rules.
To the update of Rewrite Rules, Click the “Save Change” in “/wp-admin/options-general.php”.
At this time, flush_rewrite_rules is executed by WordPress.So, Must not run the flush_rewrite_rules in your code.
Forum: Plugins
In reply to: [Custom Post Type Permalinks] Single Post 404sregister_post_type and register_taxonomy add rewrite rule at last.
And, the priority of the rule, is determined by the order of registration.
If register_post_type has been executed before the register_taxonomy, post type rule has priority.
So, post that post_name is faffing and parent post_name is category will be searched.Means that you can avoid this problem by running the register_taxonomy ahead register_post_type !
Forum: Plugins
In reply to: [Custom Post Type Permalinks] Single Post 404sMaybe you do not have commented out the flush_rewrite_rules()?
Should not use flush_rewrite_rules() in your code.flush_rewrite_rules is used only when Regenerate rules.
flush_rewrite_rules should be used only when RewriteRule is regenerated.When I delete a comment, the problem was reproduced.