acf.php
10 years ago
all-in-seo.php
10 years ago
bbpress.php
10 years ago
ninja_forms.php
10 years ago
wpml.php
10 years ago
yoast_seo.php
10 years ago
ninja_forms.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Fix for Ninja Forms |
| 5 | * |
| 6 | * @since 2.0 |
| 7 | * |
| 8 | * @return array Posttypes |
| 9 | */ |
| 10 | function cpac_remove_ninja_forms_from_cpac_post_types( $post_types ) { |
| 11 | if ( class_exists( 'Ninja_Forms', false ) ) { |
| 12 | if ( isset( $post_types['nf_sub'] ) ) { |
| 13 | unset( $post_types['nf_sub'] ); |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | return $post_types; |
| 18 | } |
| 19 | add_filter( 'cac/post_types', 'cpac_remove_ninja_forms_from_cpac_post_types' ); |