Skip to content

Instantly share code, notes, and snippets.

View drwphi's full-sized avatar

Daniel drwphi

View GitHub Profile
@hbaker
hbaker / rename-divi-projects-custom-post-type.php
Last active October 12, 2023 15:19
Divi Theme - Rename Divi's 'Projects' Custom Post Type
// RENAME DIVI PROJECTS CUSTOM POST TYPE
function ze_rename_projects_cpt() {
register_post_type( 'project',
array(
'labels' => array(
'name' => __( 'Specials', 'divi' ), // CHANGE SPECIALS TO WHATEVER YOU WANT
'singular_name' => __( 'Special', 'divi' ), // CHANGE SPECIAL TO WHATEVER YOU WANT
),
'has_archive' => true,
'hierarchical' => true,