Tagged Questions
3
votes
2answers
424 views
Custom Post Type with Input fields to seperate table on database.
At the moment I'm using a custom post type called 'locations' I would like to be able to put input fields into the custom post type that would store the information such as ( address, type, phone ...
0
votes
2answers
478 views
Custom Post Type, Saving Multiple Checkboxes
For a custom post type, I'm pulling in a list of another custom post types that I need to select for saving ...
<input type="checkbox" name="32"> My CPT <br>
<input type="checkbox" ...
0
votes
1answer
466 views
Custom Post Type Meta Box Text Input Field Won't Save When Blank
I have some text fields in a custom post type that I fill in at first, but need to delete on a future update of the post. When I delete the text in the field and save the post, the text I deleted ...
0
votes
2answers
307 views
Notices when submitting custom post type from front-end
I have a form in a page template that allows users to submit posts into a custom post type from the front-end:
$post = array(
'post_status' => 'draft',
'post_type' => 'stories',
...
0
votes
1answer
342 views
Display custom-post type based on the Title matching the current selected value
Ok quite a complex thing I'm trying to do here, and I'm a bit unsure how I will do it with wordpress, but I'm hoping some genius out there can help.
I'm basically creating some comparison ...
-1
votes
3answers
2k views
Sizing textarea field in custom metabox
Here's the code for a custom metabox. Very simply, how would I resize the textarea box? I'd like to add an expression such as cols="50" rows="5".
// Echo out the field
echo '<p>Enter the ...