wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



block_version › WordPress Function

Seit5.0.0
Veraltetn/v
block_version ( $content )
Parameter:
  • (string) $content Content to test.
    Erforderlich: Ja
Gibt zurück:
  • (int) The block format version is 1 if the content contains one or more blocks, 0 otherwise.
Definiert in:
Codex:

Returns the current version of the block format that the content string is using.

If the string doesn't contain blocks, it returns 0.


Quellcode

function block_version( $content ) {
	return has_blocks( $content ) ? 1 : 0;
}