从 Wordpress 中的 style.css 文件获取主题信息

发布于 2024-08-13 12:37:27 字数 473 浏览 3 评论 0原文

对于 WordPress 主题,需要将信息添加到 style.css 文件的顶部:

例如;对于默认主题,有这样的:

/*
Theme Name: WordPress Default
Theme URI: http://wordpress.org/
Description: The default WordPress theme based on the famous <a href="http://binarybonsai.com/kubrick/">Kubrick</a>.
Version: 1.6
Author: Michael Heilemann
Author URI: http://binarybonsai.com/
Tags: blue, custom header, fixed width, two columns, widgets
*/

是否有任何 WordPress 函数可以以编程方式获取此信息?

With a Wordpress theme, it is necessary to add information to the top of the style.css file:

e.g; for the default theme there is this:

/*
Theme Name: WordPress Default
Theme URI: http://wordpress.org/
Description: The default WordPress theme based on the famous <a href="http://binarybonsai.com/kubrick/">Kubrick</a>.
Version: 1.6
Author: Michael Heilemann
Author URI: http://binarybonsai.com/
Tags: blue, custom header, fixed width, two columns, widgets
*/

Are there any wordpress functions to get this information programatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

旧城烟雨 2024-08-20 12:37:27

您可以使用 get_theme_data() 或我快速整理的这个 PHP 脚本:

<?php
$file = file('your file location');
$contents = '';
foreach($file as $lines => $line){
$contents .= $line;
}
preg_match('!/\*[^*]*\*+([^/][^*]*\*+)*/!', $contents, $themeinfo);
echo nl2br($themeinfo[0]);
?>

You could use get_theme_data() or this PHP script I put together quickly:

<?php
$file = file('your file location');
$contents = '';
foreach($file as $lines => $line){
$contents .= $line;
}
preg_match('!/\*[^*]*\*+([^/][^*]*\*+)*/!', $contents, $themeinfo);
echo nl2br($themeinfo[0]);
?>
动听の歌 2024-08-20 12:37:27

请注意,get_theme_data 函数在 WP 3.4 中已弃用,并替换为 wp_get_theme。替换函数不会像 get_theme_data 那样从 styles.css 检索所有相同的元素,特别是 ThemeURI 元素现在返回主题的目录,不是主题 URL 的值。

http://codex.wordpress.org/Function_Reference/wp_get_theme

Note that get_theme_data function was deprecated in WP 3.4 and replaced with wp_get_theme. The replacement function does not retrieve all of the same elements from styles.css as get_theme_data did, specifically the ThemeURI element now returns the theme’s directory, not the value of Theme URL.

http://codex.wordpress.org/Function_Reference/wp_get_theme

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文