Skip to content

Instantly share code, notes, and snippets.

@Tusko
Created June 25, 2018 11:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tusko/cedcd2bd0cb30affab84448436ecb1c2 to your computer and use it in GitHub Desktop.
Save Tusko/cedcd2bd0cb30affab84448436ecb1c2 to your computer and use it in GitHub Desktop.
ACF CPT customize
<?php
function ex_project_archive_options($cptmenu) {
$cptmenu['page_title'] = 'Projects Archive';
$cptmenu['menu_title'] = 'Projects Archive';
$cptmenu['slug'] = 'my-projects-archive';
return $cptmenu;
}
add_filter('cpt_project_acf_page_args', 'ex_project_archive_options');
/*
# for WPML
add_filter('cpt_project_' . ICL_LANGUAGE_CODE . '_acf_page_args', 'ex_project_archive_options');
*/
/************ DON'T FORGET TO CHANGE `project` TO YOUR CPT NAME ************/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment