categories and short description
-
Hi
I have this code for displaying categories and description:
<?php
$categories = get_categories(‘exclude=1&title_li=’);
foreach ($categories as $cat) {
echo “<h2>category_nicename.”\”>”.$cat->cat_name.”</h2>
<p>”.$cat->category_description.”(“.$cat->category_count.”)</p>”;
}
?>
I’m trying now to shorten the description for x amount of characters
I have this code:
<?php echo substr( category_description( $cat->cat_ID),0,140 ) . “..”; ?>But I cant combine them both – tried some other variations with no success ??
anyone can help?
thanks
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘categories and short description’ is closed to new replies.