• How can I make changes to post types mentioned here:https://wpengineer.com/impressions-of-custom-post-type/?

    I entered the code in functions.php
    under function editoptions() {

    function post_type_movies() {
    	register_post_type( 'movies',
                    array( 'label' => __('Movies'), 'public' => true, 'show_ui' => true ) );
    	register_taxonomy_for_object_type('post_tag', 'movies');
    }
    add_action('init', 'post_type_movies');

    .But It doesn’t make any changes for any site in my multisite network. Am I missing anything?

    Thank you !

Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘I can't able to find any change defining " custom post type"’ is closed to new replies.