We search with this topic and found the reference link to solved my problem.
helpful link : https://rudrastyh.com/wordpress/custom-post-status-quick-edit.html
Thank you.
]]>link to solved my problem.
Moved to Fixing WordPress, this is not a Requests and Feedback topic.
]]>This is feedback topic because when we use your codex code ( https://developer.www.ads-software.com/reference/functions/register_post_status/#user-contributed-notes ) copy and paste in my functions.php file. we can not get proper output with code. however, we search in google and found one of code and script both required after my output is visible.
My problem fix with this referenced link : https://rudrastyh.com/wordpress/custom-post-status-quick-edit.html
add_action('admin_footer-edit.php','rudr_status_into_inline_edit');
function rudr_status_into_inline_edit() { // ultra-simple example
echo "<script>
jQuery(document).ready( function() {
jQuery( 'select[name=\"_status\"]' ).append( '<option value=\"featured\">Featured</option>' );
});
</script>";
}
Thank you team for your prompt response.
]]>