custom slug for custom post type

I figured out a solution and decided I’d share because its nice to be nice. This works for me and is based on a solution by Jonathan Brinley. If anyone has any suggestions or corrections please feel free to let me know.

First, create your custom post type and set it up like this (this is just an example, remember to make it fit your own needs. The slug setting is important!)

register_post_type('charts', array( 
  'label' => 'Whatever',
  'description' => '',
  'public' => true,
  'show_ui' => true,
  'show_in_menu' => true,
  'capability_type' => 'post',
  'hierarchical' => true,
  'rewrite' => array('slug' => '/whatever/%author%'),
  'query_var' => true,
  'supports' => array(
    'title',
    'editor',
    'trackbacks',
    'custom-fields',
    'comments',
    'author'
  ) 
));

Next, setup a function for your filter (in functions.php):

function my_post_type_link_filter_function($post_link, $id = 0, $leavename = FALSE) {
  if (strpos('%author%', $post_link) === FALSE) {
    $post = &get_post($id);
    $author = get_userdata($post->post_author);
    return str_replace('%author%', $author->user_nicename, $post_link);
  }
}

Then activate the filter (also in functions.php):

add_filter('post_type_link', 'my_post_type_link_filter_function', 1, 3);

Like I said, I’m not sure this is the best way to do this but it works for me 🙂

Leave a Comment