php 重写wordpress自定义帖子类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 重写wordpress自定义帖子类型相关的知识,希望对你有一定的参考价值。

add_filter( 'register_post_type_args', 'portfolio_args', 10, 2 );
function portfolio_args( $args, $post_type ) {
	if ( 'la_portfolio' === $post_type ) {
		$args['rewrite']['slug'] = 'collectie';
		$args['label'] = 'Collecties';
		$args['name'] = 'Collecties';
		$args['singular_name'] = 'Collectie';
	}

	return $args;
}

以上是关于php 重写wordpress自定义帖子类型的主要内容,如果未能解决你的问题,请参考以下文章

php 网址重写自定义帖子类型的项目divi

自定义帖子类型 Slug 重写问题

如何在自定义帖子类型的重写规则中放置元值?

如何根据语言重写自定义帖子类型 slug?

自定义帖子类型和分类法使用相同的 slug 和重写

在永久链接中使用自定义帖子类型帖子 ID 而不是帖子标题