Adding a third custom taxonomies

For every taxonomy you have to choose a unique name, which is used in the database. so so your new e.g. players_region. <?php add_action( ‘init’, ‘build_taxonomies’ ); function build_taxonomies() { register_taxonomy( ‘players_team’, // Unique name. ‘player’, // Post type. array( ‘hierarchical’ => true, ‘label’ => ‘Players Team’, ‘query_var’ => true, ‘rewrite’ => true, ) ); … Read more

menu customization

I’m not sure, but if I understand correctly you should create a second menu which is only visible on your Spanish language page. if (is_page($english_page_id)) { wp_nav_menu( array(‘menu’=>$english_menu) ); } if (is_page($spanish_page_id)) { wp_nav_menu( array(‘menu’=>$spanish_menu) ) } is_page() wp_nav_menu()

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)