• It does exactly what it says. You can most definitely extend the functionality to a custom post type by applying a filter.

Viewing 1 replies (of 1 total)
  • You can choose to use more than just pages for post types by adding a filter:

    add_filter( 'document_feedback_post_types', 'add_more_feedback_post_types' );
    function add_more_feedback_post_types ( $post_types ) {
        $post_types[] = 'post';
        $post_types[] = 'another_post_type';
        // ... etc
    
        return $post_types;
    }

    That filter has been there since Dec 2012, but Daniel should probably add that to the FAQ.

Viewing 1 replies (of 1 total)
  • The topic ‘Does what it says.’ is closed to new replies.