
Add to favorites
<?php
$category = get_terms('gallery_albums');//custom category name
foreach ($category as $catVal) {
$AlbumName[] = $catVal->name;
}
echo "<pre>";
print_r($AlbumName);
echo "</pre>";
?>
by Garth | Mar 17, 2019 | PHP, Wordpress

Add to favorites
<?php
$category = get_terms('gallery_albums');//custom category name
foreach ($category as $catVal) {
$AlbumName[] = $catVal->name;
}
echo "<pre>";
print_r($AlbumName);
echo "</pre>";
?>