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 5736 to 5744

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 19th March 2024 11:05 Europe/London time based on the source file dated 15th March 2024 17:00 Europe/London time.