Giving custom name to Custom post types

Note: Below is applicable since v1.3 of Logiscargo theme.

There are several custom post types in this theme, Filters were added in recent version so that you can easily customize the name of the Custom post types (CPTs) to match your business.

Let’s do it for Service CPT first.

To change Service to your custom name. Please follow the instructions below.

1) Make sure you are using a child theme, a blank child theme is supplied with your main ThemeForest download.

2) In functions.php file of a child theme, please add the below code.

add_filter('tt_service_cpt_args','my_custom_ser_slug', 100) ;
function my_custom_ser_slug($ser_args) {

	$ser_args['rewrite']['slug'] = 'custom-service-name' ; // Change custom-project-name to your desired name

	return $ser_args;
}

3) After you are done, please go to Settings -> Permalinks and save changes. Otherwise, you might get a 404-Not found error on single pages.

Here is the list of total filters available. Which you can use in place of tt_service_cpt_args in above code.

tt_service_cpt_args

tt_project_cpt_args

tt_gallery_cpt_args

tt_type_tax_args

tt_team_cpt_args

tt_position_tax_args

tt_client_cpt_args

tt_testimonial_cpt_args