you can do that on php side with this hook :
// the 2nd "post" of the hook is the post type
add_action("save_post_post", function ($post_id, $post, $update) {
if ($update) { // a post is updated
return;
}
if (!isset($_GET["preset_category"])) {
return;
}
$term = get_term($_GET["preset_category"]);
if (isset($term)) {
wp_add_object_terms(
$post_id
, $term->term_id
, $term->taxonomy
);
}
}, 10, 3);
Related Posts:
- How to add a block to a category page?
- Including categories in search results
- Count how many posts in category
- Custom Single Post By Category
- Set Post Title to Read-only and Disable Permalink Slug Editor in Gutenberg
- Convert custom fields to post categories
- How to disable Uncategorized category URL?
- Add role that restricts user to post in specific category
- Count posts in category including child categories
- Query posts from current year
- Show One Category on Post
- Display all posts under child sub category in sidebar on post page?
- Do I use custom post type or something else?
- What Defines What Category A Post Picks (if in multiple)
- Limit function to specific post category
- Authors in menu, template list post by author
- Show all post titles
- How do I add a reusable block to a programmatically created post?
- Add Category name to Post Title (h1)
- Posts are not showing up on particular category
- Count to how many categories a post belongs to
- How to display related posts by subcategory and not parent category
- Category Template: Need to display different content on first page of archives
- Display post category in foreach loop with category link
- Extracting post categories
- Using wp_list_categories like the the_category (showing just current categories of a post)
- Should I use posts or pages in this scenario?
- Block Editor: Reset Reusable Blocks to last saved record
- How to limit posts by category
- List blocks created by a specific block plugin
- How to allow users to post only in certain category and hide elements from edit page?
- Get user categories with most posts in it
- Need help with category listing!
- Prepending %category% onto default posts fails
- List all categories with featured image from post?
- How to list recent posts in a wp nav menu?
- Dynamic dependent Dropdown lists for categories, sub-categories and posts
- How to display two blog categories as separate sections on one page?
- How to make the first post in the loop be styled like a “new / featured” post?
- why does wordpress ignore the post args?
- get posts from Custom Post Type & Category
- How to create a “latest news” page showing a list of posts from blog category
- How to enable custom Shortcodes in Post Category Description? [duplicate]
- Sort by last word in title
- How to call posts under a specific category on static front page?
- Give posts a particular template based on the assigned category
- All categories displays the same posts
- Having pages after specifying post_type post
- Post-Archive like a page in a specific subdirectory
- How to display only one category in a custom post type?
- Get only X number of categories
- inserting a category into post
- Getting posts from some categories plus some individual posts
- Change layout of post depending on category
- latest post showing up twice on posts page
- wp_list_categories() Exclude All Categories Except One
- Different post views for different category views
- Display most recent posts in category with Twenty Ten theme widget
- Possible?! A contextually titled back link
- Get post publishing date from within custom HTML block
- Allow / show post comments in category pages
- Indenting within a blockquote
- How to select a category automatically based on a word in WordPress post title?
- How to remove the ManageBlocksMenuItem in the ToolsMoreMenuGroup in the Gutenberg Editor?
- Display default matabox of posts(add category) wordpress
- How display related post only in Default category on single
- WordPress React re-rendering to many times
- How to get tags when using publish_post
- How to add class to specific navbar item when post parent category is in specific category
- How do you change the permalink for posts for a single category?
- Posts are not displaying on their category and tag page
- Does having category name in permalinks affect SEO when having a post in multiple categories?
- how to create a category with wp_insert_post and post_category
- Exclude posts in a category on one page but show those posts on a different page
- Excluding category from post navigation in WordPress?
- Post Category link is same with Page link
- Show custom post category for single post
- Get a list of categories that are related to posts
- Dynamically load posts based on category
- Get Categories & Posts With Type Article
- Querying posts from current category, using a variable as array argument
- Set multi posts random categories and tags
- Precedence of page permalinks over woocommerce product category links?
- Need help writing loop to display posts by categories in separate divs
- Add category selection to function request
- Query post category & remove any post id
- Admin Post List Only Show One Category
- Multiple Post Repeat for Related Post Loop by Category
- Show Post number of specific Category
- Same sidebar in all posts as in the category
- Retrieve latest post by multiple categories with ID
- how to show posts on different pages if number of post per page is one
- Is possible to create a custom link that creates a post that’s already categorized?
- Is it possible to have different header style blog titles in different categories?
- Category pages vs single post pages
- How to display subcategory articles in the category view?
- How do we display a certain category type on a page while hiding all others?
- Notify/check if the content of a custom gutenberg block has changed on save_post
- ‘403 Forbidden’ when publishing a post containing different blocks
- WordPress converting ‘ to ’ and – to –?