Title: Plugin Page/CPT Title
Last modified: May 23, 2022

---

# Plugin Page/CPT Title

 *  Resolved [girdy74](https://wordpress.org/support/users/girdy74/)
 * (@girdy74)
 * [4 years ago](https://wordpress.org/support/topic/plugin-page-cpt-title/)
 * Hello! I was wondering if there was a way to change the page/cpt title? For example
   those pages have “Jobs” as the title and I’d like to change this.
 * It’s also linking this main title with an empty link.
 * Thank you!
    -  This topic was modified 4 years ago by [girdy74](https://wordpress.org/support/users/girdy74/).

Viewing 1 replies (of 1 total)

 *  Plugin Author [ThemeHigh](https://wordpress.org/support/users/themehigh/)
 * (@themehigh)
 * [4 years ago](https://wordpress.org/support/topic/plugin-page-cpt-title/#post-15678312)
 * You can achieve your requirement by adding the below code in your theme’s functions.
   php file. You can add a slug that is similar to the job listing page, then it
   won’t get redirected to an empty link.
 *     ```
       add_filter( 'register_post_type_args', 'thjm_slug_change_register_post_type_args', 10, 2 );
       function thjm_slug_change_register_post_type_args( $args, $post_type ) {
   
           if ( 'thjm_jobs' === $post_type ) {
               $args['rewrite']['slug'] = 'sample-page'; // Replace it with your slug here, You can also give job_listing page slug.
           }
   
           return $args;
       }
       ```
   
 * Further, you can also set a single job permalink manually using our job manager
   settings. Please refer to the below screenshot.
 * [https://prnt.sc/WYPVCY3sNNuu](https://prnt.sc/WYPVCY3sNNuu)
 * Thank you!

Viewing 1 replies (of 1 total)

The topic ‘Plugin Page/CPT Title’ is closed to new replies.

 * ![](https://ps.w.org/job-manager-career/assets/icon-256x256.png?rev=2162689)
 * [Job Manager & Career - Manage job board listings, and recruitments](https://wordpress.org/plugins/job-manager-career/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/job-manager-career/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/job-manager-career/)
 * [Active Topics](https://wordpress.org/support/plugin/job-manager-career/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/job-manager-career/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/job-manager-career/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [ThemeHigh](https://wordpress.org/support/users/themehigh/)
 * Last activity: [4 years ago](https://wordpress.org/support/topic/plugin-page-cpt-title/#post-15678312)
 * Status: resolved