block_core_latest_posts_get_excerpt_length

函数
block_core_latest_posts_get_excerpt_length ( No parameters )
返回值
  • (int) Returns the global $block_core_latest_posts_excerpt_length variable to allow the excerpt_length filter respect the Latest Block setting.
定义位置
相关方法
block_core_latest_posts_migrate_categoriesrender_block_core_latest_postsrender_block_core_post_excerptregister_block_core_latest_postsregister_block_core_post_excerpt
引入
-
弃用
-

block_core_latest_posts_get_excerpt_length: 该函数用于获取最新文章块的摘录长度。它从该块的设置或全局excelpt_length选项中获取该值。

在渲染时,最新文章块使用的excelpt_length过滤器的回调。

function block_core_latest_posts_get_excerpt_length() {
	global $block_core_latest_posts_excerpt_length;
	return $block_core_latest_posts_excerpt_length;
}

常见问题

FAQs
查看更多 >