Created
December 3, 2014 17:37
-
-
Save bappi-d-great/a61642ef2ab67b63fbf4 to your computer and use it in GitHub Desktop.
Support Custom Taxonomy Name translation with qTranslate plugin
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 | |
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' ); | |
} | |
} | |
} | |
add_action('admin_init', 'qtranslate_edit_taxonomies'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment