Tagged Questions
1
vote
1answer
59 views
Category pie diagram meta box in post editing page
I am trying to build a plugin for showing a pie diagram based on the number of those categories which have maximum posts. This diagram is a meta box in post editing page. Here is my source of ...
0
votes
1answer
59 views
Filter categories/tags to display in multiple metaboxes for selection in back-end
My site uses a lot of categories and tags for author selection in the back-end. To make it more user friendly for authors I need to arrange the categories and post tags in numerous metaboxes for ...
0
votes
2answers
157 views
How to customize the Categories meta box to allow only one category?
I'm trying to customize the Categories meta-box when adding a post.
I have added a custom post and I need the administrator to post a new post without the ability to use the top level categories ...
0
votes
3answers
221 views
Only one category per post
How to make each post/page have one and only one category. Categories could have radio box instead of checkbox next to each.
0
votes
1answer
64 views
How to add all categories into an array and extract the categories names and use it with a custom meta box
Basically I need to add custom meta boxes to pages and one of this options must be a list of categories from previous posts. I've managed to add the metaboxes and wrapped the categories in a array, ...
2
votes
1answer
372 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:
...
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 ...
1
vote
3answers
546 views
Limit a meta box to a specific category
I'm trying to limit a meta_box to posts in a specific category. I'm using this method: http://www.farinspace.com/page-specific-wordpress-meta-box/ and it works rather well But I can't seem to get it ...
1
vote
1answer
264 views
Show add_meta_box by selecting a specific category
In my plugin I want to display an add_meta_box under the WYSISWYG in the new post page, which is no problem and works fine.
But the box should only appear when a specific category (example: category ...
0
votes
1answer
706 views
WP Category Meta plugin fix?
Does anyone know of a fix for WP Category Meta http://wordpress.org/extend/plugins/wp-category-meta/ or a similar solution to add images and meta data to categories? With the latest version of WP it ...
4
votes
2answers
413 views
Changing Top Level Items into Radio Buttons in the Categories Meta Box?
I know it is possible to change the WordPress category list to radio buttons in the admin panel for posts, but I would like to make the just the Parents radio buttons and the sub categories or ...
0
votes
2answers
316 views
how can we bring category metabox to Media Library/Upload New Media Page
I would like to place the 'categories metabox' found in new post/edit post page in the "upload new media" page. Any clues ?
0
votes
1answer
171 views
create relationship between posts from one category and posts from another category
What I'm trying to do is adding in a post admin page a meta box, dynamically listing all posts from another category in the for of a check box list.
This way I can create relations between a post and ...
1
vote
1answer
620 views
Automatically exclude categories from metabox based on title
I am designing a website which will be used as a school PA system. Users will be posting entries into categories named for specific dates that correspond to school assemblies. We have two assemblies a ...
1
vote
2answers
700 views
WP 3.0.5: Best way to add custom metaboxes for post categories?
I haven't been working with WP for a while and noticed that there are some new features in WP 3+ such as creating meta data for taxonomies. I'd like to be able to add unique meta data setups for ...
8
votes
1answer
871 views
Is there an easy way to make a meta box have the tabs like the Categories meta box has?
My question is pretty much summed up in the title. I'm dropping a meta box in the New Post / Edit Post admin page, and I want to be able to set it up with tabs like the Categories meta box has. I ...
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() {
...