Name | Update Time |
Netflix | October 18, 2024 4:49 pm |
Disney+ | October 18, 2024 11:03 am |
Max | October 18, 2024 11:34 am |
ChatGPT 4 | October 18, 2024 2:27 pm |
Spotify | October 18, 2024 11:49 am |
Prime Video | October 18, 2024 5:17 pm |
Codecademy | October 18, 2024 5:08 pm |
Grammarly | October 16, 2024 2:31 pm |
Canva Pro | October 18, 2024 5:12 pm |
Udemy Premium Cookies | September 2, 2024 2:53 pm |
When making a corporate website, you need to list the corporate product categories in the sidebar of the website. If the company website has many product items, you need to set up secondary categories or subcategories.
How to display subcategories under the current category when building your own website or display subcategories of the category on the article page, especially when making WordPress Chinese themes, you must use this technique.
Method/Steps
1. First, add the following code to the function template function.php of the website theme:
//Display subcategories,
function get_category_root_id($cat)
{
$this_category = get_category($cat); // Get the current category
while($this_category->category_parent) // If the current category has a parent category, loop
{
$this_category = get_category($this_category->category_parent); // Set the current category as the parent category (climb up)
}
return $this_category->term_id; // Return the id number of the root category
}
2. Then paste the following code where you want to display the subcategory on the page (usually in the sidebar)
<?php wp_list_cats(‘child_of=’ . get_category_root_id($cat) . ‘&depth=1&hide_empty=0&hierarchical=1&optioncount=1’);?>
If you want to display the subcategories under the current category more flexibly, you can use the following code:
<?php
$args=array(
‘child_of’=> get_category_root_id($cat),
‘hide_empty’=>’0’,
);
$categories=get_categories($args);
foreach($categories as $category) {
echo ‘<h3><a href=”‘%20.%20get_category_link(%20$category->term_id%20)%20.%20′” title=”‘ . sprintf( __( “View all posts in %s” ), $category->name ) . ‘” ‘ . ‘>’ . $category->name.'</a></h3>’;
}
?>
Search
Popular on Blogar
2024 Codecademy Premium Account Cookies
- October 18th, 2024
- 1467 Views
2024 Grammarly Premium Account Cookies
- October 16th, 2024
- 2531 Views
2024 ChatGPT 4 Premium Account Free Cookies
- October 18th, 2024
- 2695 Views
2024 Canva Pro Free Team Invite Link And Cookies
- October 18th, 2024
- 4682 Views
Perplexity AI Premium Cookies 2024
- April 17th, 2024
- 1631 Views
Email Marketing-What Is Email Marketing?
- October 24th, 2023
- 1076 Views
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1354 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1633 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1222 Views
2024 HBOMax Premium Accounts
- October 18th, 2024
- 959 Views
How To Use Elementor in WordPress
- August 12th, 2024
- 94 Views
WordPress-loading scripts and styles
- August 12th, 2024
- 91 Views
Build Your Own Custom WordPress Theme
- August 14th, 2024
- 87 Views
How to Fix Whatsapp not Sending Verification Code?
- September 12th, 2024
- 86 Views
How does a WordPress theme call a PHP file?
- August 12th, 2024
- 85 Views
WordPress-How to list custom post-type?
- August 26th, 2024
- 84 Views
Recent Post
2024 Codecademy Premium Account Cookies
- October 18th, 2024
- 1467 Views
2024 Grammarly Premium Account Cookies
- October 16th, 2024
- 2531 Views
2024 ChatGPT 4 Premium Account Free Cookies
- October 18th, 2024
- 2695 Views
2024 Canva Pro Free Team Invite Link And Cookies
- October 18th, 2024
- 4682 Views
Perplexity AI Premium Cookies 2024
- April 17th, 2024
- 1631 Views
Email Marketing-What Is Email Marketing?
- October 24th, 2023
- 1076 Views
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1354 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1633 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1222 Views
WordPress next post / previous post on the same category
- November 11th, 2024
- 34 Views
- Howo Tractor Truck
- Howo Tipper/Dump Truck
- Howo Cargo Truck
- Howo Concrete Mixer Truck
- Howo Special Truck
- Howo Light Truck
- Shacman Tractor Truck
- Shacman Tipper/Dump Truck
- Shacman Cargo Truck
- Shacman Concrete Mixer Truck
- LGMG Mining Trucks
- XCMG Wheel Loader
- XCMG Excavator
- XCMG Crane
- XCMG Asphalt Pavers
- XCMG Road Roller
- Shantui Bulldozer
Copyright © 2024 BBBBF All Rights Reserved.