Top "Categories" questions

Categories are groupings of information.

Get current category ID of the active page

Looking to pull the category ID of a specific page in WordPress that is listing all posts using that specific …

php wordpress wordpress-theming categories
Get Category name from Post ID

Is it possible to get the category name of a category given the Post ID, the following code works to …

php wordpress categories
Remove category & tag base from WordPress url - without a plugin

I would like to remove the category & tag base from WordPress URL. I have come across other posts and …

wordpress categories base
How to get the category title in a post in Wordpress?

Say I have a post called Hello World in Wordpress and I'm directly viewing this page, how would I go …

wordpress get categories
How do I create a category in Xcode 6 or higher?

I want to create a category on UIColor in my app using Xcode 6. But the thing is that in Xcode 6 …

ios objective-c categories xcode6
Python Pandas - Changing some column types to categories

I have fed the following CSV file into iPython Notebook: public = pd.read_csv("categories.csv") public I've also imported …

python numpy pandas multiple-columns categories
How to get a category listing from Magento?

I want to create a page in Magento that shows a visual representation of the categories.. example CATEGORY product 1 product 2 …

php magento categories product catalog
How to get rid of the 'undeclared selector' warning

I want to use a selector on an NSObject instance without the need for an implemented protocol. For example, there's …

objective-c selector categories
how to display all categories in wordpress?

I used this code: $categories = wp_get_post_categories(get_the_ID()); foreach($categories as $category){ echo '<div …

wordpress categories
Objective-C: Property / instance variable in category

As I cannot create a synthesized property in a Category in Objective-C, I do not know how to optimize the …

objective-c categories