是否有任何过滤器可以更改永久链接结构,并在主题激活后自动将其设置为post name?
我有自定义帖子,但如果不更改永久链接,我将无法工作?
谢谢
是否有任何过滤器可以更改永久链接结构,并在主题激活后自动将其设置为post name?
我有自定义帖子,但如果不更改永久链接,我将无法工作?
谢谢
生成自定义帖子时要考虑的刷新重写规则。
此处提供更多信息https://codex.wordpress.org/Function_Reference/flush_rewrite_rules
这对我来说就像我的主题被激活时一样,每个东西都可以工作
/* Flush rewrite rules for custom post types. */
add_action( \'after_switch_theme\', \'flush_rewrite_rules\' );
WordPress文档说:WordPress offers you the ability to create a custom URL structure for your permalinks and archives. https://codex.wordpress.org/Settings_Permalinks_Screen 我看到此屏幕将如何为特定帖子/页面创建永久链接,但我没有看到此设置屏幕上关于如何为存档帖子/页面创建链接的任何其他详细信息。有人能澄清一下吗?