Tagged Questions
1
vote
1answer
38 views
Create a shortcode that creates a form for users to edit their information
I want to make it so that logged in users can edit their information on a page in my site, so that I can avoid having them go to the admin side all together.
I was thinking that I could create a ...
2
votes
1answer
495 views
Frontend editing, Frontend user dashboard
I am creating a website so that users can submit their articles from the front end. I have quite a few things set up:
The ability to submit custom post types from the front end
Blocked from the ...
0
votes
1answer
95 views
display custom portfolio tags
This is a part from the code that is used to display portfolio categories:
$post_cat = array();
$post_cat = wp_get_object_terms($post->ID, "portfolio_category");
...
1
vote
3answers
1k views
Custom form, shortcode, and submit handler
I have a frontend form with a bunch of input. My requirements force me to use a custom shortcode to create the form. I have already tested a page with that shortcode.
Here's my :
<form ...