此函数返回 url: <?php get_theme_url(); ?>
。如何将其用作变量?
我试过这段代码,但它不起作用:
<?php
$a = get_theme_url();
$files = glob( '$a/tariffs/tariff-b*.php' );
foreach( $files as $file ) {
include( $file );
echo $tariff_about;
?>
更新:
谢谢!我将使用双引号。
但现在两者<?php get_theme_url(); ?>
和
<?php
$a = get_theme_url();
$files = glob( $a."/tariffs/tariff-b*.php" );
foreach( $files as $file ) { include( $file );
echo $tariff_about; }
?>
返回只是http://localhost/
。
会是什么?