wpseek.com
A WordPress-centric search engine for devs and theme authors



block_core_post_excerpt_excerpt_length › WordPress Function

Since7.0.0
Deprecatedn/a
block_core_post_excerpt_excerpt_length ( No parameters )
Returns:
  • (int) The excerpt length.
Defined at:
Codex:

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.


Source

function block_core_post_excerpt_excerpt_length() {
	return 101;
}