wpseo_schema_aggregator_per_page_big

wpseo_schema_aggregator_per_page_big

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.27.1.1

apply_filters('wpseo_schema_aggregator_per_page_big') is found 1 times:

  • /src/schema-aggregator/infrastructure/config.php line 142
    		 * Filter: 'wpseo_schema_aggregator_per_page_big' Determines the page count for post types with lots of schema nodes.
    		 *
    		 * @param bool $default_count The default amount of posts per page.
    		 */
    		$per_page = (int) \apply_filters( 'wpseo_schema_aggregator_per_page_big', self::DEFAULT_PER_PAGE_BIG_SCHEMA );
    
    		if ( $per_page > 0 ) {
    			return $per_page;
    		}
    
    		return self::DEFAULT_PER_PAGE_BIG_SCHEMA;