Tagged Questions
0
votes
1answer
121 views
Drop down list with posts within the “add new” page
Quick explanation :
When I add a new "Company" (custom post type), I have a drop down menu listing all the companies to choose if the one i'm creating depends from another one.
I got 3 metaboxes, the ...
1
vote
0answers
115 views
dropdowboxes with pre-selected custom fields optios that filters the results according seach needs
In my site I have one custom post types with custom taxonomies:
custom post_type=listings --> Category --> Tags
Along with it, I have some custom fields to separate them by country, state, region.
...
1
vote
1answer
509 views
Widget: Custom Post Type Post Listing Dropdown on Admin Side
Widget: I'm making a custom widget with the following functionality on the admin side.
3 text fields
2 dropdown menus to select posts by title (both from a single custom post type)
Right now, ...
0
votes
1answer
396 views
Select Venue from dropdown list and reuse stored address information in meta_box
UPDATED CODE 12/12/2011
Here is the code in functions.php. I put the code for output in my events page. For now there has been on output.
<?php
// Custom Meta Data for Events
...
1
vote
2answers
897 views
Dropdown list of a custom post type
I have a custom post type, Doctors, that I need to create a dropdown nav for. I just want it to populate a select list with all the posts of that CPT and navigate to that post on selection.
I'm ...
3
votes
1answer
2k views
Custom Taxonomy as Dropdown in admin
I’ve created a custom post type (called Sponsors) with an additional taxonomy connected to it, called “Type”.
Everything is essentially working perfectly but I would very much like to have my ...
0
votes
1answer
1k views
How to create Custom Taxonomy Search Drop Down for specific Post Type
I have a number of custom post types which share a custom taxonomy.
I'm trying to implement a dropdown search box using php (to insert into a widget or elsewhere) that allows selection of a taxonomy ...
0
votes
1answer
434 views
Front End Dropdown Showing All Custom Post Type 'Agent'
Title says it all, I pretty much just want to put a dropdown list on the front end that will list all the posts of custom post type 'agent', preferably in alphabetical order, and go to that post when ...
1
vote
2answers
230 views
How to show cutom post labels in options?
I have this code:
$args=array(
'public' => true,
'_builtin' => false
);
?>
<select id="<?php echo $this->get_field_id('posttype'); ?>" ...
3
votes
1answer
2k views
List custom post types in dropdown
I have three custom post types, each with around 5 taxonomies and 2 of the custom post types share two taxonomies.
I've just about got everything set up for posting from the front end other than the ...