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 dashboard and only admin can see the publish button?
?php
$args=array(
'post_type' = 'post',
'post_status' = 'pending',
'order' = 'ASC',
'caller_get_posts' =1,
'paged' =$paged,
);
Thank You all in advance for help :D