Skip to content

Instantly share code, notes, and snippets.

@iHwy
Forked from cre8tivediva/functions.php
Created March 9, 2019 16:36
Show Gist options
  • Select an option

  • Save iHwy/47a28a33763b18b7ee9e5556e8e5fd24 to your computer and use it in GitHub Desktop.

Select an option

Save iHwy/47a28a33763b18b7ee9e5556e8e5fd24 to your computer and use it in GitHub Desktop.
Rename the Genesis Portfolio Slug
// Change Portfolio CPT Slug to One of Your own
function change_slug_portfolio_custom_post_type() {
$args = get_post_type_object("portfolio");
$args->rewrite["slug"] = "your-new-name";
register_post_type($args->name, $args);
}
add_action('init', 'change_slug_portfolio_custom_post_type', 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment