We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dbc579 commit 7b2aca1Copy full SHA for 7b2aca1
1 file changed
plugins/osi-features/inc/classes/taxonomies/class-base.php
@@ -20,7 +20,6 @@ abstract class Base {
20
* Base constructor.
21
*/
22
protected function __construct() {
23
-
24
$this->setup_hooks();
25
}
26
@@ -30,7 +29,6 @@ protected function __construct() {
30
29
* @return void
31
32
protected function setup_hooks() {
33
34
add_action( 'init', array( $this, 'register_taxonomy' ) );
35
36
@@ -40,7 +38,6 @@ protected function setup_hooks() {
40
38
41
39
42
public function register_taxonomy() {
43
44
if ( empty( static::SLUG ) ) {
45
return;
46
@@ -70,7 +67,6 @@ public function register_taxonomy() {
70
67
* @return array
71
68
72
69
public function get_args() {
73
74
return array(
75
'hierarchical' => true,
76
'show_ui' => true,
0 commit comments