Hi,
I’ve tried to search for the answer, but I didn’t find anything.
Is there any easy way to create a field in a frontend form that edits the title of a post?
I’ve already used forms for editing post meta data, like this:
piklist('field', array(
'type' => 'text'
,'scope' => 'post_meta'
,'field' => 'name'
,'label' => 'Name'
,'attributes' => array(
'class' => 'text'
)
));
But I don’t know how to let the user edit the title of the post. Is it possible using Piklist?
Thanks!!