Custom Post Types not working with MiniMU
-
Really need some help here. MiniMU is the best solution I’ve found for my current project of running multiple domains that share WP content.
However, with MiniMU active, I can’t get my custom post types to work.
Here’s my custom post type
// Custom Post Types add_action( 'init', 'create_my_post_types' ); function create_my_post_types() { register_post_type( 'media', array( 'labels' => array( 'name' => __( 'Media' ), 'singular_name' => __( 'Media' ), 'add_new_item' => __( 'Add New Media' ), 'edit_item' => __( 'Edit Media' )), 'supports' => array( 'title', 'editor', 'custom-fields' ), 'public' => true, 'hierarchical' => true,) ); }
With MiniMU active I get 404s for single posts and on pages that list all my custom posts I get nothing. Just blanks. Nothing.
Thanks for your help
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Custom Post Types not working with MiniMU’ is closed to new replies.