I found out that you can attach arbitrary info directly to the post type object: register_post_type('example', array( 'foo' => array('bar') )); ... later ... $foo = get_post_type_object('example')->foo; -- http://scribu.net