Recent Posts

Caution: Greetings to all visitors. The site is working in short. Links Please skip the link to view any topic and thank you for visiting
header ads

Only Show Categories That Have Listings In Them?

Hi all,

I have a fair few categories and i want to only show categories that have listings in them, This is the code i have at the moment that shows all categories regardless -

    $i_substr_cat=substr_count($category, ".");
   
    foreach($categories as $key=>$value)
    {
        $i_substr_key=substr_count($key, ".");
       
        if($i_substr_key != ($i_substr_cat+1))
        {
            continue;
        }
       
        if(strpos($key, $category.".", 0) === 0)
        {...
PHP:
Only Show Categories That Have Listings In Them?

from PHP https://ift.tt/3dumcgG
via IFTTT

Post a Comment

0 Comments