Statistics: Posted by Cristián Lávaque — April 8th, 2011, 8:56 pm
Statistics: Posted by Cristián Lávaque — April 8th, 2011, 8:11 pm
<?php
if ($categories = get_categories ())
{
foreach ($categories as $category)
{
if (!is_permitted_by_s2member ($category->cat_ID, "category"))
continue;
/* Skip it. The current User/Member CANNOT access this Category,
or any Posts inside this Category, or any of its sub-Categories. */
}
}
?>
if ($categories = get_categories ()) {
$i = 0;
foreach ($categories as $category) {
if (!is_permitted_by_s2member ($category->cat_ID, "category"))
continue;
$variables = get_object_vars($category);
echo $variables['name'];
$i++;
}
}
Statistics: Posted by vitorclaw — April 8th, 2011, 2:58 pm
Statistics: Posted by vitorclaw — April 8th, 2011, 2:48 pm