獲取活動主題 URL

<?php echo esc_url( get_bloginfo( 'stylesheet_directory' ) ); ?>

輸出

http://example.com/wp-content/themes/twentysixteen

備擇方案

在內部,get_bloginfo( 'stylesheet_directory' ) 呼叫 get_stylesheet_directory_uri(),所以你可能想要使用它:

<?php echo esc_url( get_stylesheet_directory_uri() ); ?>

許多開發人員更喜歡使用這些專用函式,因為它們和 get_bloginfo() 之間的命名約定不一致。例如,get_stylesheet_directory() 返回子主題路徑; 但是,正如前面的例子所示,get_bloginfo( 'stylesheet_directory' ) 返回子主題 URL。如果你使用 get_stylesheet_directory_uri(),則對於你是否正在檢索路徑或 URL 的可能性較小。