Support » Plugin: Custom Post Type UI » Custom Rewrite Slug Issue

  • The Custom Post Types UI Plugin (http://wordpress.org/extend/pl…..t-type-ui/) causes a problem with multiple custom taxonomies (and I believe the same is true for custom post types) if one does not set the Custom Rewrite Slug. Currently, if one does not attempt the Advanced Options for Custom Taxonomies, the code produced is something like:

    [php]register_taxonomy(‘actors’,array (
    0 => ‘people’,
    ),array( ‘hierarchical’ => false, ‘label’ => ‘Actors’,’show_ui’ => true,’query_var’ => true,’rewrite’ => array(‘slug’ => ”),’singular_label’ => ‘Actor’) );[/php]

    To fix the error, if it defaulted to something like the following (writing the slug as the taxonomy name with rewrite set to true), I believe the error would no longer exist:

    [php]register_taxonomy(‘actors’,array (

    0 => ‘people’,

    ),array( ‘hierarchical’ => false, ‘label’ => ‘Actors’,’show_ui’
    => true,’query_var’ => true,’rewrite’ => array(‘slug’ =>
    ‘actors’),’singular_label’ => ‘Actor’) );[/php]]

  • The topic ‘Custom Rewrite Slug Issue’ is closed to new replies.