如果我更改永久链接设置,则所有帖子类型都使用该结构。 例如:
https://www.domain.dom/blog/%category%/%postname%/
然后将portolio项解析为
https://www.domain.dom/blog/portfolio/item/
我想在显示成员组合,常见问题等时删除/ blog / from url
我找到this,但不知道我是否需要注册新的帖子类型,把它放在主题functions.php中或者该如何处理?
真的需要一些关于如何实现这一目标的指南。
由于
答案 0 :(得分:0)
比您想象的要容易,将单个php文件添加到wp-content / plugins目录,添加plugin header comment,然后调用register_post_type(),例如:
<?php
/**
Plugin Name: My custom profiles
...
*/
add_action('init', function() {
register_post_type('my_custom_profile', [
'label' => 'Profiles',
...
]);
});