Can the speaker and sponsor default subdomains be changed.
For example:
http://www.anmexpo.com/speaker/page-name
to
http://www.anmexpo.com/quick-links/page-name
Or, is there too many instances of "speaker" for the changes to be made?
/**
*
* Code used to implement custom post type for speakers
*
**/
function gavern_create_post_type() {
register_post_type( 'gavern_speakers',
array(
'labels' => array(
'name' => __( 'Speakers', GKTPLNAME ),
'singular_name' => __( 'Speaker', GKTPLNAME )
),
'taxonomies' => array('category'),
'menu_position' => 5,
'public' => true,
'rewrite' => array('slug' => 'speaker'),
'has_archive' => true,
'supports' => array('title', 'editor', 'thumbnail', 'custom-fields', 'comments')
)
);
}
'rewrite' => array('slug' => 'speaker'),