Changeset 3459021
- Timestamp:
- 02/11/2026 02:01:15 PM (6 weeks ago)
- File:
-
- 1 edited
-
faqtastic/trunk/faqtastic.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
faqtastic/trunk/faqtastic.php
r3458997 r3459021 70 70 } 71 71 72 add_action( 'plugins_loaded', 'faqtastic_init' );72 add_action( 'plugins_loaded', 'faqtastic_init', 20 ); 73 73 74 74 // Register FAQ CPT … … 101 101 ); 102 102 103 $args = apply_filters('faqtastic_cpt_args', $args); 104 103 105 register_post_type( 'faqtastic-qa', $args ); 104 106 } … … 162 164 ); 163 165 164 register_taxonomy( 'faqtastic-thematic', array( 'faqtastic-qa' ), $args ); 166 $args = apply_filters('faqtastic_taxonomy_args', $args); 167 168 register_taxonomy( 'faqtastic-thematic', apply_filters('faqtastic_taxonomy_cpts', array( 'faqtastic-qa' ) ), $args ); 165 169 } 166 170
Note: See TracChangeset
for help on using the changeset viewer.