WordPress. Adding a taxonomy both to users and other content - wordpress

As reported in this page adding a taxonomy to a user is very different and more complicated than doing the same job for anoter content.
That's my question: can I add the taxonomy, let's call it "skills", to my users and to a CPT called JobOffer?
How... in case it's possible?
Many thanks

There are several ways. An easy solution is to use Advanced Custom Fields to add taxonomies for a custom post type to users.
Have you already registered the custom post type taxonomy and linked it to the custom post type?

Related

Parent permalink slug before CPT slug

I'm currently busy making a FAQ for my website but i'm struggling with the permalink structure.
I have made a regular page where people can see an overview of the FAQs. I called that page Klantadvies.
I installed a Custom Post Type plugin and made a post type called faq. I also made a taxonomy which is called onderwerp.
Unfortunately the plugin won't allow me to have a page parent in the slug. So i'm wondering if it's possible to have my page slug (klantadvies) in front of the custom post type slug. For example:
http://mypage.com/klantadvies/faq/onderwerp
Thnx in advance!
Rather than using a plugin for your post types and taxonomies, I'd recommend you use these two solutions:
https://generatewp.com/post-type/
https://generatewp.com/taxonomy/
You can use those to create your Post Type and Taxonomies. Within each of those configs you're allowed to setup the slugs / URL structure that you want to use.
On top of that you're going to need to setup a custom rewrite rule to handle echoing out the values you're looking for on the appropriate layout.
https://codex.wordpress.org/Rewrite_API/add_rewrite_rule

How to change custom taxonomy terms order per post in Wordpress without plugin

I have to order my custom taxonomy terms per post. So, I have to change order of taxonomy terms that related custom post type posts while post displaying.
I have a custom post type that called "article" and I have a custom taxonomy that called "article-author". So an "article" can have more than one "article-authors". No problem so far.
But when display an article, related article-authors order by name. But I have to sort article-authors by custom order and I have to define it's order before the article saved (if possible... or not, can change it after saved).

Classified Nested Category->Sub Category->Post View for Wordpress

I am really working hard to get a specific Post view in my Wordpress blog.
Example
Click http://theunlockr.com/roms/
Then Click http://theunlockr.com/roms/android-roms/
Then CLick http://theunlockr.com/roms/android-roms/asus-roms/
I figured that this is a nested view of categories and subcategories and finally the post in the respective category.
Need some input on how to do this on a basic wordpress blog.
I have already tried page builder and Grid views and alot of plugins, but cant really make this kind of view.
This is done via custom post types and custom taxonomies.
For example, you could create a custom post type rom, and assign the custom taxonomy roms with child categories Android ROMs -> Asus ROMs. This child category is assigned to the custom post type.

Add Custom Post Type Custom Fields to WordPress Search

I've created a custom post type for a client (gravesite), and it has several custom fields to fill out ('bcva_branch_text', 'bcva_rank', 'bcva_start_serve', 'bcva_end_serve', 'bcva_dob', 'bcva_dod', 'bcva_cemetary', 'bcva_latitude', 'bcva_longitude').
The client wants these fields to be searchable, but I'm having trouble finding a way to do it. The WordPress Search will search the custom post type's title and 'editor' fields, but how do I get WP to search the added custom fields as well?
Thanks!
The Custom Fields Search plugin looks like it will do what you need. It seems to let you choose which custom fields will be included in search.

Add Custom Taxonomies to Custom post types automatically

I am building a website using Wordpress and Thesis theme where I would be using custom post type say 'Movie'. I also have an API which given the title of the movie Gives the list of Genres it belongs to. I have "genres' Custom taxonomy already created.
I would like to know if there is any filter/action as 'Category_save_pre' where I can hook my API to assign the Genre automatically.
Try save_post - http://codex.wordpress.org/Plugin_API/Action_Reference/save_post

Resources