Hooks::filter_excerpt_length( int $length )

Filters the excerpt_length.


Parameters

$length

(int) (Required) The excerpt length.


Top ↑

Return

(int) The modified excerpt length, if required.


Top ↑

Source

File: src/Tribe/Views/V2/Hooks.php

	public function filter_excerpt_length( $length ) {
		return $this->container->make( Template\Excerpt::class )->maybe_filter_excerpt_length( $length );
	}

Top ↑

Changelog

Changelog
Version Description
4.9.10 Introduced.