Tagged Questions
0
votes
1answer
29 views
input radio 'checked' saves, but select option 'selected' doesn't
So I followed a tutorial on how to create a meta box w/ the taxonomy terms shown in radio buttons. (Tutorial here for others if interested: ...
0
votes
0answers
14 views
Display Term Metabox Only On Certain Term Edit and Add Pages In Admin
I have a simple metabox added to a taxonomy and in turn its terms, however I am looking for a way to only display the metabox on a single term of this taxonomy, is this possible?
This metabox with ...
0
votes
1answer
312 views
Create custom taxonomy and Display in metabox dropdown
I'm looking to create a dropdown in the post edit screen which contains 3 already existing tags. What's the easiest way of doing this?
Basically all I'm looking for is a simple drop down which adds ...
0
votes
2answers
1k views
How to display non-hierarchical taxonomy as terms with checkboxes?
I'd like to have a non-hierarchical custom taxonomy displayed in the add/edit posts admin screen for a custom post type. Obviously, when the custom taxonomy is non-hierarchical, the meta box that's ...
0
votes
2answers
257 views
multi custom fields and taxonomy search
we have a couple of custom meta boxes for product (custom post type).
one custom meta box key is area_required_width, and we have numbers input for it when publishing products, now we want to have a ...
2
votes
1answer
147 views
Using Custom Posts with Metaboxes and Drop-downs
When using Custom Posts and adding a Metabox, I was wondering how I could add a drop-down menu that would populate data that was added by the user.
For example I want to be able to select a 'source' ...
2
votes
1answer
404 views
Better way to enforce category hierarchy in post_categories_metabox?
The objective is to ensure that when editing a post, the metabox that lists a hierarchical taxonomy doesn't reorder itself upon Update to put checked items on top.
Right now, edit-form-advanced.php ...
2
votes
1answer
503 views
How to group meta boxes on the post edit page
I suspect that this is not possible right now, but oh well.. I'll ask, maybe one of you has some intersting thoughts to share.
So let's say we have the following taxonomy terms meta-boxes on our post ...
5
votes
1answer
862 views
How can I create a taxonomy meta-box with search suggestions but no new terms input?
I was wondering how I could setup a taxonomy metabox on a post edit page that would be similar to the "tags" kind (with search field and automatic suggestions), but without the right to add a new ...
8
votes
1answer
1k views
Taxonomy dropdown metabox in the back-end
I've created custom taxonomy called Brands and made it hierarchical so I can add Car brands and models there and keep their relations, like this:
Ford
Mustang
Mondeo
Focus
Problem is, this list ...
1
vote
1answer
424 views
metabox with custom post type values
I need to re-write a current WP website and I think Custom post types are required, combined with Meta Box.
The basic layout is
Author (custom)
Books (custom)
Photos (custom)
All 3 custom post are ...
3
votes
2answers
246 views
Add additional data to a specific taxonomy term when used in a post
If I'm using a custom post type for a Movie or a TV show episode, I may use a taxonomy for "actors" and assign all the actors related to the work to it, but I'm not sure how, besides of that, I can ...
2
votes
1answer
590 views
How to add automatically keyword to taxonomies when a post published, and assign them to the post
How to add automatically keyword to taxonomies when a post published, and assign them to the post
for example i have in my post edition, a custom meta box, when you complete this input, a function ...
5
votes
3answers
3k views
Custom Post Type - Taxonomy Dropdown Menu?
I have created a custom post type and added various meta boxes/fields to this custom post type. All is working excellent except for one element...
Instead of utilizing the default interface for ...
10
votes
5answers
4k views
Can I add a Category Metabox to attachment?
I am using register_taxonomy_for_object_type() to add the Category taxonomy field to Media uploads (attachments). I'm using this code to do so:
add_action('init', 'reg_tax');
function reg_tax() {
...