Tagged Questions
3
votes
1answer
55 views
Get names of authors who have edited a post
How can I call the usernames of people that have edited a post?
I know I can use get_the_modified_time to display the time the post was last modified, is the same possible with the list of users that ...
0
votes
1answer
39 views
How to auto strip hyperlinks & images in wordpress post
I creat a post form on front-end for wordpress members by use DJD Site Post plugin.
Plugin url: http://wordpress.org/extend/plugins/djd-site-post/
And now i want to auto strip all hyperlink & ...
0
votes
0answers
55 views
User driven content problems
I am trying to build a website that will allow users to post from the front end. I need to be able to have the user enter a title, a category, and tags. For the content of the post, I would ideally ...
0
votes
1answer
46 views
Change Post Status From Front End
I am using the code in a page below to let users delete their posts from the front in. I have wp-admin totally blocked off to site users.
What i want to do is when they click the delete button the ...
2
votes
2answers
250 views
Edit a post from frontend. post_tags get saved, but not separated
I'm building a CRM-Theme for Wordpress. So i post, edit and delete posts from the Frontend. I'm on a good way to resolve all problems, i think. But there is one failure. At the index there is a "edit" ...
-2
votes
1answer
228 views
Front end post or photo or both
I need a help in correcting my code that can front end post or attach image or post&attach image ;)
Now I can send a 'post' and 'post with photo' but can't send just a photo, How can I do that? ...
0
votes
1answer
129 views
Lock post editing to one user at a time - wp_check_post_lock
I am creating a website where user have to be logged in to give a price bid on a product. Only one bid can be given on the product. Therefore, I only want one user at a time to be able to give a bid. ...
0
votes
1answer
110 views
Get a submitted value from front end post form for single template
I'm using Wordpress Form Manager to allow users to post from the front end and I need to place values for the post in different spots in a single post template. The code they offered doesn't return ...
0
votes
1answer
404 views
Front-end Image Upload to Custom Meta Box
I'm currently using a custom post type with a custom meta box for two image uploads.
I'm trying to create a front-end post page where the user can upload their own images from their desktop. All of ...
0
votes
1answer
448 views
Wordpress wp_editor to post and edit
I browsed through all the topics here on stackexchange to find an answer to my problem but couldn't quite get there.
This snippet enables you to post from the frontend, but how about editing. Each ...
0
votes
1answer
455 views
Front end post submission form with duplicate type fields
Here is the simple front end post submission form code
<?php $postTitle = $_POST['post_title'];
$post = $_POST['post'];
$submit = $_POST['submit'];
if(isset($submit)){
global $user_ID;
...
1
vote
3answers
606 views
Redirection not working in this front end post submission form?
I found this tutorial to create a front end post submission form:
It doesn't matter what I type on wp_redirect( 'http://www.google.com' );
I don't get redirected to anywhere. Just the same page but ...
-1
votes
1answer
571 views
Front end add custom field to existing post [closed]
I know how to create a front end new post form through tutorials but I'm confused as to how to make a front end custom field that allows user to add data to existing posts
1
vote
1answer
233 views
Post & edit a post from front end along with upload, dropdown, and other inputs
I am following this tutorial to post from front end. I am able to post the title, content, category, tags, I would like to know is it possible to add more fields like in the image below. How to ...
0
votes
3answers
1k views
Create post from form with image
I found this wonderdul script that @Bainternet here at Wordpress Answers created, that makes it possible to attach images into posts from a html form..
I tried to combine in into my "html form to ...
2
votes
1answer
792 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 ...
2
votes
2answers
1k views
How can I edit a post from the frontend?
I have learned how to create a post from the frontend but how about editing it ?
This is the code I am trying to create a simple frontend form for posting.
Thank you
1
vote
2answers
2k views
Frontend Post Form Validation
OK, there have been several posts on here about frontend posting forms. I've read them all, which got me to where I am. Now every form I come across has some form of validation which seems to check ...
6
votes
3answers
11k views
Submit post and upload image from front-end
I am trying to do something similar to the above question. I am trying to make users post and upload images from front-end. I have already done the post form and its working.
I just followed and ...
0
votes
2answers
289 views
Stop Authors from submitting spam post
I am designing a frontend for users, where they can submit an article/post from. But i am worrying if someone puts javascipt code, or SQL injection, or other malicious code. Is there a plugin or some ...
0
votes
1answer
1k views
Front end post editing using a form
I have a custom-post type with the standard meta boxes and some custom fields. How could I edit a post through a form in the frontend?
0
votes
2answers
658 views
Post from front-end only by logged in users, form posts as “posted by: <logged-in user's username>”
I've handrolled a form for posting from the front-end, with some custom functions that I needed. However, I've made the form only accessible when a user is logged in, and I'd like to have the articles ...
3
votes
2answers
3k views
Front-End Post Submission
I am trying to add a form where users can submit post from front-end.
I am Following this tutorial:
http:// wpshout.com/wordpress-submit-posts-from-frontend/
What I am doing is adding this code to ...