Get-SEO
Set this status, to use as a trigger when automating a workflow with services like Zapier, when using your Ai API to generate SEO metadata for your website.
// Register Custom Status
function custom_post_status() {
$args = array(
'label' => _x( 'Get-SEO', 'Status General Name', 'text_domain' ),
'label_count' => _n_noop( 'Get-SEO (%s)', 'Needs-SEO (%s)', 'text_domain' ),
'public' => false,
'show_in_admin_all_list' => true,
'show_in_admin_status_list' => true,
'exclude_from_search' => true,
);
register_post_status( 'get_seo', $args );
}
add_action( 'init', 'custom_post_status', 0 );