Réaxens

01 79 38 14 29

  contact@reaxens.fr

  9H00 – 19H00

function cptui_register_my_taxes() { /** * Taxonomy: recommandation. */ $labels = [ "name" => __( "recommandation", "astra" ), "singular_name" => __( "recommandations", "astra" ), ]; $args = [ "label" => __( "recommandation", "astra" ), "labels" => $labels, "public" => true, "publicly_queryable" => true, "hierarchical" => false, "show_ui" => true, "show_in_menu" => true, "show_in_nav_menus" => true, "query_var" => true, "rewrite" => [ 'slug' => 'recommandations', 'with_front' => true, ], "show_admin_column" => false, "show_in_rest" => true, "show_tagcloud" => false, "rest_base" => "recommandations", "rest_controller_class" => "WP_REST_Terms_Controller", "rest_namespace" => "wp/v2", "show_in_quick_edit" => false, "sort" => false, "show_in_graphql" => false, ]; register_taxonomy( "recommandations", [ "vosrecommandations" ], $args ); } add_action( 'init', 'cptui_register_my_taxes' );