matthijs166
4/9/2019 - 12:07 PM

Rewrite wordpress custom post type

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;
}