Skip to content

Instantly share code, notes, and snippets.

@bappi-d-great
Created December 3, 2014 17:37
Show Gist options
  • Save bappi-d-great/a61642ef2ab67b63fbf4 to your computer and use it in GitHub Desktop.
Save bappi-d-great/a61642ef2ab67b63fbf4 to your computer and use it in GitHub Desktop.
Support Custom Taxonomy Name translation with qTranslate plugin
<?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