只是想知道爲什麼通過閱讀源代碼default-constants.php
:爲什麼WP_CONTENT_URL基於選項'siteurl`,而不是`home`
function wp_plugin_directory_constants() {
if (!defined('WP_CONTENT_URL'))
define('WP_CONTENT_URL', get_option('siteurl') . '/wp-content'); // full url - WP_CONTENT_DIR is defined further up
我有我的網站的一個別名,我home
地址是不同的我site_url
地址導致CORS問題。 使它指向home
的最佳方法是什麼?
定義WP_CONTENT_URL? – Rienk
是的,我期望它是'get_option('home')' – Sanandrea
不,它是(如代碼所示)get_option('siteurl')。 '/ wp-content'(注意wp-content) – Rienk