Tagged Questions
0
votes
0answers
67 views
WordPress - front-end form to admin verification before publishing [closed]
Are you aware of existence plugin with following functionality:
visitor fill the form on front-end
from saved and to be verified by admin (to publish or not)
if allowed to publish, new post is ...
1
vote
1answer
600 views
Modify front-end delete button to publish pending posts
I've found this helpful snippet to make a delete post link on the front-end:
<?php if (current_user_can('edit_post', $post->ID))
echo "<a href='" . ...
2
votes
1answer
734 views
Publish pending article from front end with a button?
Is it possible to take the blue publish button in back end of the wordpress and place it in the frontend near the post in my index.php. I need a way to publish the pending article without going to ...