define('WP_SITEURL', '/');
define('WP_HOME', '/');
Failed to load plugin url: https://prosadidom.ru/wp-includes/js/tinymce/langs...
It has been suggested that if WordPress were to be able to do all of this over, we may have instead opted for relative URLs. This is true, and making adjustments to our current approach – or reconsidering it in its entirety – does remain a distinct possibility in the future.
function removeHomeUrl($url)
{
$url_sectors = preg_split('/\//i', $url);
unset($url_sectors[0]);
unset($url_sectors[1]);
unset($url_sectors[2]);
return '/'.join('/', $url_sectors);
}
add_filter('plugins_url', 'removeHomeUrl');
function attachment_image($attrs)
{
$url_sectors = preg_split('/\//', $attrs['src']);
unset($url_sectors[0]);
unset($url_sectors[1]);
unset($url_sectors[2]);
$attrs['src'] = '/'.join('/', $url_sectors);
return $attrs;
}
add_filter('wp_get_attachment_image_attributes', 'attachment_image');
Читал но не понял что это за проблемы и могут ли они возникнуть у меня
А так?
а в чем удобство для человека?