block_core_post_excerpt_excerpt_length()WP 7.0.0

Callback for the excerpt_length filter to override the excerpt length.

If themes or plugins filter the excerpt_length, we need to override the filter in the editor, otherwise the excerpt length block setting has no effect. Returns 101 (one more than the max block setting of 100) to ensure wp_trim_words can detect when trimming is needed and add the ellipsis.

No Hooks.

Returns

Int. The excerpt length.

Usage

block_core_post_excerpt_excerpt_length();

Changelog

Since 7.0.0 Introduced.

block_core_post_excerpt_excerpt_length() code WP 7.0

function block_core_post_excerpt_excerpt_length() {
	return 101;
}