ACF.php
5 years ago
NinjaForms.php
5 years ago
WPML.php
5 years ago
WPMLColumn.php
5 years ago
WooCommerce.php
5 years ago
NinjaForms.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\ThirdParty; |
| 4 | |
| 5 | use AC\Registrable; |
| 6 | |
| 7 | class NinjaForms implements Registrable { |
| 8 | |
| 9 | public function register() { |
| 10 | add_filter( 'ac/post_types', [ $this, 'remove_nf_sub' ] ); |
| 11 | } |
| 12 | |
| 13 | public function remove_nf_sub( $post_types ) { |
| 14 | if ( class_exists( 'Ninja_Forms', false ) ) { |
| 15 | if ( isset( $post_types['nf_sub'] ) ) { |
| 16 | unset( $post_types['nf_sub'] ); |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | return $post_types; |
| 21 | } |
| 22 | |
| 23 | } |