|
@@ 930-932 (lines=3) @@
|
| 927 |
|
*/ |
| 928 |
|
$options = apply_filters( 'pods_register_taxonomy', $options, $taxonomy, $ct_post_types ); |
| 929 |
|
|
| 930 |
|
if ( 1 == pods_var( 'pods_debug_register', 'get', 0 ) && pods_is_admin( array( 'pods' ) ) ) { |
| 931 |
|
pods_debug( array( 'register_taxonomy', compact( 'taxonomy', 'ct_post_types', 'options' ) ) ); |
| 932 |
|
} |
| 933 |
|
|
| 934 |
|
register_taxonomy( $taxonomy, $ct_post_types, $options ); |
| 935 |
|
|
|
@@ 978-980 (lines=3) @@
|
| 975 |
|
*/ |
| 976 |
|
$options = apply_filters( 'pods_register_post_type', $options, $post_type ); |
| 977 |
|
|
| 978 |
|
if ( 1 == pods_var( 'pods_debug_register', 'get', 0 ) && pods_is_admin( array( 'pods' ) ) ) { |
| 979 |
|
pods_debug( array( 'register_post_type', compact( 'post_type', 'options' ) ) ); |
| 980 |
|
} |
| 981 |
|
|
| 982 |
|
register_post_type( $post_type, $options ); |
| 983 |
|
|