/ Published in: PHP
                    
                                        
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
add_action('init', 'post_type_actions_culturelles');
function post_type_actions_culturelles() {
register_post_type( 'actions_culturelles',
'label' => __('Actions'),
'public' => true,
'show_ui' => true,
'hierarchical' => false,
'capability_type' => 'post',
));
register_taxonomy_for_object_type('post_tag', 'actions_culturelles');
}
URL: http://codex.wordpress.org/Custom_Post_Types
Comments
 Subscribe to comments
                    Subscribe to comments
                
                