Reply To: Editing Portfolio Custom Fields in the Backend

#1115
livemesh
Keymaster

You need to change the /framework/framework.php file at line number 350 to add custom-fields to supported features for custom post type –

        register_post_type('portfolio', array('labels' => $labels,

                'public' => true,
                ....
                'menu_position' => 20,
                'supports' => array('title', 'editor', 'thumbnail', 'comments', 'excerpt', 'custom-fields')
            )

Then the custom fields option should show up on ‘Screen Options’ on the top right of the portfolio edit window.

And you can change the next and previous code in loop-nav.php file at line number 21.