【发布时间】:2015-04-26 02:55:45
【问题描述】:
我想在 Wordpress 中隐藏特定帖子类型的帖子标题下的永久链接部分。我该怎么做?
【问题讨论】:
标签: wordpress custom-post-type permalinks posts
我想在 Wordpress 中隐藏特定帖子类型的帖子标题下的永久链接部分。我该怎么做?
【问题讨论】:
标签: wordpress custom-post-type permalinks posts
在register_post_types 下添加以下参数:
'public' => false, // it's not public, it shouldn't have it's own permalink, and so on
'publicly_queryable' => true, // you should be able to query it
'show_ui' => true, // you should be able to edit it in wp-admin
'exclude_from_search' => true, // you should exclude it from search results
'show_in_nav_menus' => false, // you shouldn't be able to add it to menus
'has_archive' => false, // it shouldn't have archive page
'rewrite' => false, // it shouldn't have rewrite rules
你需要的是第一个元素'public' => false。
【讨论】:
我们找不到这样的过滤器或选项来删除“标题”“内容编辑器”等“slug”。
我们需要通过 CSS 来管理它。通过研究高级自定义字段(ACF),他们做同样的事情。 他们将 display:none 放在代码中。
您只需将以下代码放在您的 style.css 中:
.post-type-<post type slug> #edit-slug-box {
display: none;
}
【讨论】: