| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 6 | public static function get_terms( $taxonomy, $args_with_taxonomy_key ) { |
||
| 7 | global $wp_version; |
||
| 8 | |||
| 9 | if ( version_compare( $wp_version, '4.5', '<' ) ) { |
||
| 10 | return get_terms( $taxonomy, $args_with_taxonomy_key ); |
||
| 11 | } else { |
||
| 12 | $args_with_taxonomy_key['taxonomy'] = $taxonomy; |
||
| 13 | return get_terms( $args_with_taxonomy_key ); |
||
| 14 | } |
||
| 15 | } |
||
| 16 | |||
| 22 | } |