{"id":392,"date":"2025-01-02T15:13:17","date_gmt":"2025-01-02T11:13:17","guid":{"rendered":"http:\/\/keksus.com\/?p=392"},"modified":"2025-01-05T11:13:35","modified_gmt":"2025-01-05T07:13:35","slug":"display-category-description-in-wordpress-easily","status":"publish","type":"post","link":"https:\/\/hostatto.com\/blog\/display-category-description-in-wordpress-easily.html","title":{"rendered":"Display Category description in WordPress"},"content":{"rendered":"<p>If you want to add a category description to the category page, you need to open a file that displays categories in your theme, usually this is a file archive.php or category.php and add this code to it<\/p>\n<pre class=\"lang:default decode:true \" >&lt;?php\r\necho category_description(get_the_category()[0]-&gt;cat_ID);\r\n?&gt;<\/pre>\n<p> Also you can use function in file functions.php<\/p>\n<pre class=\"lang:default decode:true \" >function cat_description(){\r\n\tif ( is_category() ){ \r\n\t\techo category_description(get_the_category()[0]-&gt;cat_ID);\r\n\t}\r\n}<\/pre>\n<p>To display category description on any page write<\/p>\n<pre class=\"lang:default decode:true \" >echo cat_description();<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>...<\/p>\n","protected":false},"author":1,"featured_media":138,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[54],"tags":[],"class_list":["post-392","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress"],"_links":{"self":[{"href":"https:\/\/hostatto.com\/blog\/wp-json\/wp\/v2\/posts\/392","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hostatto.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hostatto.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hostatto.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hostatto.com\/blog\/wp-json\/wp\/v2\/comments?post=392"}],"version-history":[{"count":0,"href":"https:\/\/hostatto.com\/blog\/wp-json\/wp\/v2\/posts\/392\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hostatto.com\/blog\/wp-json\/wp\/v2\/media\/138"}],"wp:attachment":[{"href":"https:\/\/hostatto.com\/blog\/wp-json\/wp\/v2\/media?parent=392"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hostatto.com\/blog\/wp-json\/wp\/v2\/categories?post=392"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hostatto.com\/blog\/wp-json\/wp\/v2\/tags?post=392"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}