gatherpresssubpages

Filters the list of GatherPress sub pages.

Allows a companion plugin or theme to extend GatherPress settings
by adding additional sub pages to the settings page.

Auto-generated Example

add_filter(
   'gatherpress_sub_pages',
    function( array $sub_pages ) {
        // Your code here.
        return $sub_pages;
    }
);

Parameters

  • array $sub_pages The array of sub pages.

Returns

array Modified array of sub pages.

Files

apply_filters( 'gatherpress_sub_pages', array() )

← All Hooks