You can user if..else condition to combine both function into one hook.
add_action( 'transition_post_status', 'groupqueue_to_groupcpt_and_groupcpt_to_bannedcpt', 10, 3);
function groupqueue_to_groupcpt_and_groupcpt_to_bannedcpt($new_status, $old_status, $post){
//Move to Group Post Type
if ('publish' === $new_status && 'groupq' === $post->post_type )
{
wp_update_post(array(
'ID' => $post->ID,
'post_type' => 'group'
), true );
}
else if ( 'banned' === $new_status && ('groupq' === $post->post_type || 'group' === $post->post_type))
{
wp_update_post(array(
'ID' => $post->ID,
'post_type' => 'banned'
), true );
}
}
Related Posts:
- transition_post_status hook, works – but not if the post is new
- Handling error states with admin_post
- Insert code when users come from an specific referer
- How to display related posts from parent category
- Using a javascript file to access a get posts array
- Make custom field meta not display if there is not data in it
- How to migrate the posts from an old custom legacy blog to a new WordPress website?
- Get_the_author doesn’t return author name
- Trying to make php run in a post
- Remove posts after a given amount of time
- How can I use wp_query to show all product data using just the products ID?
- Trying to add attribute to my posts’ featured image
- How to show part of the_content?
- Loop through categories and display posts title under each dropdown
- Which hook/action will help me solve my problem?
- Post + form + action + results on the same page
- Loading index.php contents which located outside blog folder for post single page
- get post content of particular post by url
- Post repeating with infinite scroll
- Get children post mime type using parent post_ID wp_post
- Display related posts without a plugin
- Count posts on multisite with blog id
- Making (and edit existing) posts with ID included
- Parsing Menu Items and Blog Posts
- Pagination on Custom Post
- $wpdb returns duplicate posts
- How to show an entire post content and not also the excerpt?
- Why is a wp function used in current PHP namespace’s callback not resolved to global scope?
- WordPress query undefined offset in loop
- WP_Query: getting posts where custom field exists
- Increment paged on WP_Query
- How do I add more options to the post-new.php page?
- get post id from wp_insert_post for get_template_part
- Modify main query before it run without pre_get_post
- .html end of URl affected to SEO?
- Displaying content on posts page based on category
- how to make an array of post id’s in is_single
- Loading Posts & Category with Ajax
- Four posts per row [closed]
- array_rand not working correctly?
- Update if post with specific title exists
- Need help removing […] after excerpt
- WP_Query() load selected post
- Unable to render custom field after attempt to generate a list of recent post in page template
- Why when I create a new post I found 2 record related to this post into the posts database table?
- Woocommerce Custom Meta Boxes- How to only display if they actually have content
- Pagination in single.php
- understand what code is doing when prepending /blog
- Advanced Query posts
- My worpress search page is showing no results
- duplicate posts with ajax load more wordpress
- My Custom Post Type AJAX Query is Returning no posts – why?
- How to display 8 posts in four columns and 2 rows on a carousel slide?
- Inside Array – “unidentified index” error with “prepare was called incorrectly” despite not calling the prepared statement with wordpress [closed]
- Is there anyway I can call the year once?
- Time Stamp In A WordPress Post Title That Does Not Keep Refreshing
- Check $post->ID against multiple values
- Don’t update modified post date when user add a product review or comment?
- Limit the number of characters/words in an excerpt for a related posts section
- Show a text if the post has written by author user role in WordPress
- Getting info about selected posts using one WP_Query
- Closing Comments conditionally in comments.php
- Change upload URL by mime type
- How to center all text body in single.php at once?
- Having trouble with customizing blog posts on the home page
- Related Posts: if there is no category use tags
- WordPress post insertion from PHP file
- How do if all posts has this category ID then do this
- Make sticky post with FacetWP
- Getting page / post URL on publish and / or update
- Getting error in sql query
- How do I get the featured post to share on Social Media and show on Individual Post pages?
- Insert div after every three posts in home.php [duplicate]
- PHP tag in post content makes wordpress go crazy
- Unable to get Post Category Name and URL
- Dynamically Create Posts Via XML File
- Basic PHP question (displaying post title over thumbnail) [closed]
- insert thumbnail image from php script
- media_handle_sideload() returned post_id being incremented
- Saving Post redirects to 404 page when php $_GET variable in post body
- Weird Behaviour: Not all WordPress Posts appearing
- Dynamic form variables for post meta
- Adding category in wordpress – custom
- Query category-specific, paginated posts and allow viewer to change sort order
- How can I add WordPress Audio Player as featured audio in Audio Blog Posts?
- Auto create description in post
- Trying to see if page is category or single and displaying title with appropriate heading tag
- Different image and background color depending on page type
- Posts sortable column not sorting properly for custom field numbers
- HOW TO Insert Existing PHP Code to WOrdPress
- How to customize posts in WordPress by using HTML and CSS?
- How to list all the posts in a personalized page? WordPress
- Disable single posts, but keep archive
- Add multiple HTML attributes to an Elementor button
- How to create a WordPress PAGE in another folder?
- How do I get a function to work in single.php
- How to use a conditional statement in a post loop but not count towards the “posts_per_page” if false
- Count the number of matching post names in foreach loop
- Need Help With Making Full-Width Template for Blog Posts (common methods aren’t working)
- Display posts based on the selected category when no subcategory is chosen