Tagged Questions
0
votes
0answers
12 views
front end category change
Hey I'm looking for a simple way to change the category of a post from the front end. How could this be possible? (I really don't want to use have front end editor plugins, and I want to use a short ...
0
votes
1answer
197 views
wp_update_post is not updating category
I am using this custom function to add a publish/unpublish button to the front end of my site for the users:
if ('draft' == get_post_status ($post_id)) {
$post = ...
0
votes
2answers
214 views
Categories from front-end, checkbox selection doesn't work
I'm using the plugin Post from site, which sets up a WP front end writer. I changed some line of code because I need to select categories with checkboxes and not with a multiple select (as it was ...
2
votes
1answer
378 views
How to Make a Categories Meta Box with Hierarchical Checkboxes on Frontend?
My website allows uses to post posts of a custom post type ("place").
I would like to display the same "Categories" meta box seen in WordPress dashboard when you add or edit a post on frontend:
...
3
votes
1answer
113 views
Saving two categories from two dropdowns in front end posting form
So, here's the deal:
I have two category dropdowns, the first for the parent categories and the second for the child categories. They form a chain so that when you select the parent category the ...
0
votes
1answer
386 views
Create a Category with a front-end post
I'm creating a buddypress site in which a single post will create the trunk of a related series of articles. From that trunk article, related branches of posts will stem outwards.
Anyone signed up ...
0
votes
1answer
171 views
Update custom category fields front-end
Been using this answer -->> (link) to create some custom fields in my categories
and it works great ! my only problem is that i have a frontend form that allows
creating new categories with an ...
3
votes
2answers
510 views
How do I create a way for users to assign categories to a post from the frontend?
Basic idea is for any post on the site, I'd like users to be able to assign a category for it by selecting from a set of checkboxes on the frontend. This would be a kind of crowd-sourced ...