Categories not being pulled
-
I’ve created seven categories in the Portfolio section. I’m unable to pull categories with PHP:
<div class=”controls”>
<!– Get a list of all categories in the database, excluding those not assigned to posts –><?php
$all_categories = get_categories(array(
‘hide_empty’ => true
));
?><!– Iterate through each category –>
<?php foreach($all_categories as $category): ?>
<!– Output control button markup, setting the data-filter attribute as the category “slug” –><button type=”button” data-filter=”.<?php echo $category->slug; ?>”><?php echo $category->name; ?></button>
<?php endforeach; ?>
</div>The only thing that is pulled is “Uncategorized” for the button.
The topic ‘Categories not being pulled’ is closed to new replies.