Last updated July 11, 2026, Version 0.34
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_pagesThe array of sub pages.
Returns
array Modified array of sub pages.
Files
apply_filters( 'gatherpress_sub_pages', array() )