Ensure term fields are added after the PODS plugin registers terms

Fixes #34.
This commit is contained in:
Nick Cernis
2019-02-08 18:38:56 +01:00
committed by Nathan Rice
parent 87b2e738d4
commit 6e40c921ab
@@ -4,7 +4,7 @@ class Genesis_Simple_Sidebars_Term {
public function init() {
add_action( 'init', array( $this, 'add_term_fields' ) );
add_action( 'init', array( $this, 'add_term_fields' ), 12 );
}