_strip_template_file_suffix

函数
_strip_template_file_suffix ( $template_file )
Access
Private
参数
  • (string) $template_file Template file name.
    Required:
返回值
  • (string) Template file name without extension.
定义位置
相关方法
_get_block_templates_fileswp_scripts_get_suffix_get_block_template_fileget_theme_file_uriget_template_directory_uri
引入
5.8.0
弃用
-

_strip_template_file_suffix: 这个函数用来从模板的文件名中删除后缀。这个后缀通常被添加到模板文件名的末尾,以表明模板的类型(例如,页面、单个文章等): 这个函数用来检索没有这个后缀的模板名称,这在注册自定义模板时很有用。

从模板文件名中删除.php或.html后缀。

function _strip_template_file_suffix( $template_file ) {
	return preg_replace( '/.(php|html)$/', '', $template_file );
}

常见问题

FAQs
查看更多 >