• Resolved kebimalotane123

    (@kebimalotane123)


    How do I change the job title from Job Openings to Careers. I would like to do this using a short code plugin like snippets? I want to avoid making amendments to the theme.

Viewing 1 replies (of 1 total)
  • Plugin Support vidyakv

    (@vidyakv)

    Hi @kebimalotane123,

    Thanks for reaching out to us.

    If you are referring to the ‘Code Snippets’ plugin( https://wordpress.org/plugins/code-snippets/ ), then you can add the below code snippet to change the archive title, without creating a child theme or adding this code to your theme.

    function awsm_jobs_custom_archive_title( $title, $post_type ) {
    if ( $post_type === 'awsm_job_openings' ) {
    $title = 'Careers';
    }
    return $title;
    }
    add_filter( 'post_type_archive_title', 'awsm_jobs_custom_archive_title', 10, 2 ); 

    Regards,
    Vidya K V

Viewing 1 replies (of 1 total)
  • The topic ‘Change Page Title’ is closed to new replies.