mizner
8/2/2016 - 3:25 AM

Gravity Forms + Custom Post Type (enable all post types)

Gravity Forms + Custom Post Type (enable all post types)

<?php 
add_filter( 'gfcpt_post_type_args', 'my_gf_post_type_args' );
function my_gf_post_type_args( $args ) {
    $args['public'] = false;
    return $args;
}