Last active
August 29, 2015 13:57
-
-
Save tarikcayir/9396861 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* All qTranslate Taxonomies! | |
*/ | |
add_action('admin_init', 'qtranslate_edit_taxonomies'); | |
function qtranslate_edit_taxonomies(){ | |
$args = array( | |
'public' => true, | |
'_builtin' => false | |
); | |
$output = 'object'; // or objects | |
$operator = 'and'; // 'and' or 'or' | |
$taxonomies = get_taxonomies($args,$output,$operator); | |
if ($taxonomies) { | |
foreach ($taxonomies as $taxonomy ) { | |
add_action( $taxonomy->name.'_add_form', 'qtrans_modifyTermFormFor'); | |
add_action( $taxonomy->name.'_edit_form', 'qtrans_modifyTermFormFor'); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment