WordPress开发函数block_version(),返回内容字符串正在使用的块格式的当前版本。
用法:
block_version( string $content )
描述
如果字符串不包含块,则返回0。
参数:
$content
(string) (必需) 测试的内容。
返回
(int)如果内容包含一个或多个块,块格式版本为1,否则为0。
来源:
文件: wp-includes/blocks.php
function block_version( $content ) {
return has_blocks( $content ) ? 1 : 0;
}
更新日志:
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容