Support

Account

Home Forums Front-end Issues Pagination on custom WP_query Reply To: Pagination on custom WP_query

  • Hello
    This one is a 404 too
    http://localhost/ajr2/cadeaux/cadeaux-anniversaire-femme/page/2/

    It’s a custom taxonomy that I made in My function.php file

    function cadeaux() {
      register_taxonomy('cadeaux','post', [
        'labels' => [
          'name' => 'Cadeaux'
        ],
        'show_in_rest' => true,
        'hierarchical' => true,
        'show_in_quick_edit' => true,
        'show_admin_column' => true,
      ]);
    }
    
    add_action('init','cadeaux');

    Do u need more informations ?