I have several custom fields that I need my client to be able to edit at anytime. For the sake of convenience, I’d like them to be able to edit these custom fields from the Quick Edit. This way they don’t have to open a bunch of new pages to go into each post.
Is it possible to add editable custom fields to Quick Edit? Or am I out of luck?
After adding our custom column, we are ready to expand our Post Quick Edit menu using the quick_edit_custom_box action hook.
Note â The quick_edit_custom_box action hook will not fire unless there are custom columns present. That is why we started by adding a custom column.
Line 5 â Only render our Quick Edit extension on the relevant screen.
Lines 7 to 25 â Render our custom drop-down menu for selecting widget sets.
Note that we are wrapping our post meta in a div with an id of ârelease_date-â plus the post id. This will come in handy when we are populating our âQuick Editâ row. Full Detail here