wpseo_schema_aggregator_schemamap_changefreq

wpseo_schema_aggregator_schemamap_changefreq

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.27.1.1

apply_filters('wpseo_schema_aggregator_schemamap_changefreq') is found 1 times:

  • /src/schema-aggregator/infrastructure/schema_map/schema-map-config.php line 26
    	 *
    	 * @return string Valid changefreq value (always|hourly|daily|weekly|monthly|yearly|never).
    	 */
    	public function get_changefreq(): string {
    		$changefreq = \apply_filters( 'wpseo_schema_aggregator_schemamap_changefreq', 'daily' );
    
    		if ( ! \in_array( $changefreq, self::ALLOWED_FREQUENCIES, true ) ) {
    			return 'daily';
    		}
    
    		return $changefreq;