This tutorial will show you how to easily remove the WordPress category title attribute from your WordPress post categories menu, this is the little pop-up text you see when hovering over a category link in your browser. This is a feature I always find myself using over and over again so wrote it into a neat WordPress function to share with you all.
Continue reading “Remove WordPress Category Menu Title Attribute On Browser Hover”
Tag: post category
Display Single WordPress Post Category Even If Its A Sub Category
This tutorial will teach you how to display a single WordPress post category in your theme even if the article has been posted in a sub category. I created this technique for use in several WordPress themes I have developed where I only wanted to display the actual category that the article was posted in even when posted to sub categories. It’s a nice technique for themes with limited space or users that don’t want to display all categories that a post has been placed in.
Step 1: Creating A Retrieve Actual Category Function
Firstly you will want to open your current themes functions.php file then copy the code block below and paste it into your functions.php file at the bottom, close and save your functions.php file.
Continue reading “Display Single WordPress Post Category Even If Its A Sub Category”