Collections functions
General 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 5790 to 5798

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 6th December 2023 10:05 Europe/London time based on the source file dated 21st November 2023 15:25 Europe/London time.