Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource functions

is_featured_collection_category()

Description

Check if a collection is a featured collection category

Parameters

ColumnTypeDefaultDescription
$fc array A featured collection data structure as returned by {@see get_featured_collections()}

Return

boolean

Location

include/collections_functions.php lines 5737 to 5745

Definition

 
function is_featured_collection_category(array $fc)
    {
    if(!isset(
$fc["type"]) || !isset($fc["has_resources"]))
        {
        return 
false;
        }

    return 
$fc["type"] == COLLECTION_TYPE_FEATURED && $fc["has_resources"] == 0;
    }

This article was last updated 5th May 2024 12:35 Europe/London time based on the source file dated 3rd May 2024 14:45 Europe/London time.