block_version

函数
block_version ( $content )
参数
  • (string) $content Content to test.
    Required:
返回值
  • (int) The block format version is 1 if the content contains one or more blocks, 0 otherwise.
定义位置
相关方法
wp_kses_versionwp_check_php_versionwp_check_mysql_versionwp_version_checkdo_blocks
引入
5.0.0
弃用
-

block_version: 这个函数返回WordPress块编辑器的当前版本号。

返回内容字符串正在使用的块格式的当前版本。

如果该字符串不包含块,则返回0。

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

常见问题

FAQs
查看更多 >