Using custom taxonomy when getting posts with WordPress
Using custom taxonomy in custom post types means that you can add categories, or tags to your custom posts. This can be achieved with code like the following – added Read More »
Using custom taxonomy in custom post types means that you can add categories, or tags to your custom posts. This can be achieved with code like the following – added Read More »
I’ve been working recently on the portfolio section of this blog. It uses a custom post type I created that I’ve got installed as a plugin. One thing that always Read More »
Custom post types can share tags with normal posts. To do this, add the following line into your custom post declaration.
|
1 |
register_taxonomy_for_object_type('post_tag', 'portfolio'); |
Custom post types can actually also have their Read More »