Posted in
12
6:01 am, September 21, 2020
wordpress get the current category id name and slug
This gets and displays the current category id in a wordpress blog post if you have the current id, if not you can leave the $post_id blank and it should see if there is a category loaded to the current post if there is one.
This should return an array.
Also i had to switch the the_ID(); for get_the_id(); or it just echos the post id in the middle of the page
PHP
$category_array = get_the_category( $post_id );
var_dump($category_array ); // this should show you an array of the category details
// get the primary category by grabbing the 1st bit of the array, not tested if the 1st part is actually the primary category.
$category_id = $category_array[0]['term_id'];
$category_name = $category_array[0]['name'];
$category_slug = $category_array[0]['slug'];
// ^^ this actually gives the error -- Uncaught Error: Cannot use object of type WP_Term as array
// so we need to access the array using -> rather than brackets as its an object i think.
// here is the working code:
$post_id = the_ID();
$category_array = get_the_category( $post_id );
$category_id = $category_array[0]->term_id;
$category_name = $category_array[0]->name;
$category_slug = $category_array[0]->slug;
var_dump($category_id);
echo "<pre>";
var_dump($category_array);
echo "</pre>";
View Statistics
This Week
31
This Month
196
This Year
0
Add Comment
Other Items in wordpress
using wp_nav_menu to show a custom menu in wordpress
get and show the featured image on a wordpress page template
link to a custom style sheet in your theme directory wordpress
wordpress show page content on template file
show post content on template wordpress
wordpress add a template file to your theme
fix for wordpress requesting ftp login details installing plugins
wordpress category list sorting custom
adding pagination to custom wp_query
add paging to wp list query
list items from blog and filter by category name
match a category id in wordpress and then add styles just for that id
get the current post id from content.php
wordpress get the current category id name and slug
get the wordpress category name from a category id
wordpress adding post custom field meta and displaying it on you template
getting the site title vs the page name
wordpress get home url
add a tag to wordpress header from a plugin
list items matching a category title
wp register plugin settings admin
Create a admin main wordpress custom menu item
wordpress show the parent page title with fallback to title
Add a post date to your custom wordpress post listing
wordpress get page content to display on template page
get the stylesheet directory in wordpress theme
wordpress register enqueue javascript require jquery
wordpress show the post content for use in a template
wordpress show posts loop with feature image thumbnail
wordpress get site url
wordpress advanced custom fields replace shortcode for site url with blog url
wordpress check home and not home for banners and things
wordpress use a shortcode in php gravity forms
wordpress include jquery in theme functions
wordpress enqueue slicknav and slick slider
wordpress show the page content for use in a template
wordpress change domain in config, wordpress domain config
wordpress get template directory
Related Search Terms
Other Categories in Code
c testing apache apps asp bat bootstrap bootstrap templates core css css grid design elements fancybox fonts foundation framework gimp git html icons ideas images javascript jquery js linux mac nginx node php php functions php simple html dom pi400 python react sections site bugs site documentation sql sqlite sublime svg templates tools virtual box webdev windows wordpress