2011-03-18 71 views

回答

0

嘗試get_included_files()

它會列出都記錄下來,但它會使用文件系統路徑而不是URL

11

如果您使用的是兒童主題,其他解決方案將無法工作,它會爲您提供父主題的目錄。兒童主題使用:

<?php bloginfo('stylesheet_directory'); ?> 
+0

謝謝獲取當前主題的url,我剛剛試了一下。 'stylesheet_directory'是如果您使用兒童主題的方式。 – mtchuente 2016-03-24 10:46:53

0
<?php echo get_template_directory_uri(); ?> 
-1

你可以試試下面的代碼在WordPress

<?php bloginfo(‘template_url’);?> 

<?php echo get_template_directory_uri(); ?>