|

Changing A Mockup URL Slug

SureFeedback has a built-in filter to change the custom post type urls used for mockups and websites. To change the url for mockup projects, add this code to your theme or child theme’s functions.php file:

/**
 * Change post type slug
 */
function wp123_ph_change_post_type_slug( $args ) {
	$args['rewrite'] = array( 'slug' => 'mockup' );

	return $args;
}

add_action( 'ph_register_post_type_project', 'wp123_ph_change_post_type_slug' );

Change “mockup” to whatever you want in your url. After you add this code, be sure to resave permalinks under Settings > Permalinks

Was this doc helpful?
What went wrong?

We don't respond to the article feedback, we use it to improve our support content.

Need help? Contact Support
On this page
Scroll to Top