Skip to content

Instantly share code, notes, and snippets.

@paulgibbs
Created January 21, 2014 11:08
Show Gist options
  • Save paulgibbs/8538146 to your computer and use it in GitHub Desktop.
Save paulgibbs/8538146 to your computer and use it in GitHub Desktop.
<?php
// .com/achievements/
function fravaccaro_root_slug( $slug ) {
return 'biscuits';
}
add_filter( 'dpa_get_root_slug', 'fravaccaro_root_slug' );
// .com/achievement/my_achievement/
function fravaccaro_singular_root_slug( $slug ) {
return 'biscuit';
}
add_filter( 'dpa_get_singular_root_slug', 'fravaccaro_singular_root_slug' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment