获取绝对路径:get_stylesheet_directory()
获取URI:get_stylesheet_directory_uri()
编辑:这是一个概念验证插件。它将只打印出站点(前端)头标记中的样式表路径和uri。如果这些函数在你的插件中不起作用,可能还有一些其他因素没有在OP中解释。请发布你的代码。
<?php
/**
* Plugin Name: Get Style Sheet Test
* Plugin URI:
* Description: Demonstration of get_stylesheet_directory() and get_stylesheet_directory_uri() within a plugin.
* Version: 1.0
* Author: goto10
* Author URI:
* License:
*/
add_action( \'wp_head\', \'get_stylesheet_dir_and_uri_test\' );
function get_stylesheet_dir_and_uri_test() {
$output = "<!-- \\nGet the absolute path using get_stylesheet_directory(): " . get_stylesheet_directory() . "\\n";
$output .= "Get the URI using get_stylesheet_directory_uri(): " . get_stylesheet_directory_uri() . "\\n -->";
echo $output;
}