thanks to @TheDeadMedic, I found the solution.
I used reserved terms, and that’s why WordPress interpreted my inputs as query parameters.
so for example with my categorys, I had to change my classes in my form :
'post_category' => array($_POST['cat']), // Usable for custom taxonomies too
by
'post_category' => array($_POST['my_cat']), // Usable for custom taxonomies too
and in my form the class name “cat” by “my_cat”.
I had to change this every time I used a reserved term.
and now it works perfectly fine !
Related Posts:
- Template hierarchy about pagination after front-page.php
- Why is my archive.php redirecting to front-page.php?
- When to use is_home() vs is_front_page()?
- Sort results by name & asc order on Archive.php
- Default archive URL wordpress
- Increase number of posts in archive page
- How do I remove unwanted pages like archive, search, etc.?
- How to add “Stick this post to the front page” to front end?
- How do I fetch the static front page using the REST API?
- How can I lock down an old wordpress install I don’t intend to update?
- How do I place content on archive pages but not on main page?
- WordPress Posts By Date/Day?
- How can I get the Month Name from Archive?
- Preventing 404 error on empty date archive
- is_archive() returns false on the archives page
- What is archive.php used for?
- Archive by Year
- Archive widget – limit number of months to 12
- How do I visit archive-post.php?
- Optimal way to redirect home page to category archive?
- How do I make wp_get_archives show me months where only pages were created?
- Sort custom-posts in archive.php via meta-key?
- Including post_type = ‘wiki’ in author archives
- Add Adsense code in index.php
- Output yearly archive within a page
- Create a month by month archive of pages (not posts)
- How to show specific year archive into dropdown list
- How to check if current static page is frontpage from admin plugin
- Archive filtering posts by year and month
- How to get the date dynamically from archive.php to date.php?
- How to make a custom Archive Page
- Making next_posts_link(); return posts by month
- Count posts for each year
- How can I change the way dates shown in the archive widget?
- display archive as collapsing links
- how do I get the date in a date archive page
- How can I get the ID for an archive page? [closed]
- if in_category on archive.php
- Theme’s page.php and index.php template files are confusing me
- Archive in sidebar with dropdown list of Year – Month – Day
- Arrange and separate posts
- How can I organize/create an archive listing by Year and month
- Change behavior depending on content length
- home.php or frontpage (via settings) for theme?
- Customize first page of category
- How to edit archive page’s content inside wordpress dashboard?
- How can I make WordPress serve homepage to different URL?
- Cache previous versions of website?
- Archive pages for posts based on their taxonomy?
- How do I make my single-work page show on my front-page.php?
- WP Multisite Static Frontpage
- How to show static placeholder when less post elements in archive page?
- How can I get archives for specific category without category_base in the url?
- is_home() in HTML head
- How to display thumbnail and excerpt of a page on homepage?
- condition for only if is archive for default post type
- Show only post titles in archives?
- Remove author archive
- Preview Post/Custom Post types in Archive
- if there is only one post in the category, directly open
- How to hide a post from archives
- How to disable monthly archive
- Displaying year, month and day archives differently
- How to set up a single portfolio page as home page?
- Create a front page template and separate page for posts?
- What’s wrong with my date_query?
- How we display Archives for specific categories
- What does choosing a Post Page do?
- When i try to open archive pages i get a 404 error
- Loop first six posts in carousel, next eight in grid
- How to Create Custom Archive page
- Does only custom post type have post type archive pages?
- Modify text after post count
- How to show year/month archive including months with no posts
- Displaying Archives List
- Archive links don’t work when clicked
- Custom archives function
- Page is displaying blog archives
- terms_description and admin problem
- wp_get_archives() display months even if there is no posts
- how do I encode links to specific archive searches?
- Some archive by year page return 404
- Group Posts by Category in Monthly Archive
- Loop through years and months in WordPress archives
- Dropdown to select posts by month and then displaying those posts in the archive page
- style.css doesn’t load on the home page when front-page.php activated (using stock theme)
- If one taxonomy contains the same term as another then display post
- How to filter by date & a specific custom post type post-WP 4.4?
- Author archive doesn’t work [closed]
- Having a problem with Next and Previous Links
- Custom post type archive page thinks I’m not logged in
- How to conditionally check for author archive when is_author() fails to work because the author has no posts
- Is there a better way to do headings for (all) archives?
- Date Archive pages 404 error
- ‘Archive’ folder for posts and pages
- Page-loop is looping content from custom loops on the same site. How to avoid that?
- Checking if a specific date archive is being displayed
- How to Find the Page the Front Page is Using?
- Constructing An if Statement with is_category(); in archive.php
- Filter post by clickable year [duplicate]