Why isn’t my code to save custom fields in quick edit working?

I have some code that allows me to add custom fields to the quick edit and bulk edit sections of a custom post type. Here’s what I’m using: https://github.com/bamadesigner/manage-wordpress-posts-using-bulk-edit-and-quick-edit Everything is working great except I can’t get it to save from Quick Edit. Bulk Edit works and saves just fine, it’s just Quick Edit that … Read more

How to add a “publish” link to the quick actions

I’m trying to add a “Publish” link by the quick actions: but I’m not exactly sure of how implement it. Here’s what I’ve got so far: add_filter(‘post_row_actions’, function ( $actions ) { global $post; // If the post hasn’t been published yet if ( get_post_status($post) != ‘publish’ ) { $nonce = wp_create_nonce(‘quick-publish-action’); $link = get_admin_url(‘path … Read more