我想将此URL结构用于我的自定义帖子类型word:
host.com/words/{the-word}-meaning
我曾尝试使用“从自定义PostType重写”,但运气不佳,因此现在我正在尝试此方法:
add_rewrite_rule(\'^words/([^/]+)(?:/([0-9]+)-meaning)?/?$\', \'index.php?word=$matches[1]\', \'top\');
但它通过单词postype参数传递整个单词以及-含义。例如
索引。php?word=运行含义(错误)
i want to get this 指数php?word=运行(右)