如何修改WordPress圖片位址為相對路徑

不言
發布: 2023-04-02 21:38:01
原創
3565 人瀏覽過

這篇文章主要介紹了關於如何修改WordPress圖片地址為相對路徑,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

WordPress圖片地址在預設編輯下是使用額絕對路徑,這樣別人複製你文章到其他的網站上,圖片也可以正常顯示,但是如果我想更改博客的域名,或者路徑,那麼這些圖片的地址全部失效,不能正常顯示。 優搜網在網路上找到兩種解決Wordpress範本圖片使用相對路徑的方法,希望可以幫到大家。

1.修改Wordpress主題根目錄下的wp-config.php,這個檔案只有在安裝好Wordpress之後才會出現,在該檔案中加入兩行

define(‘WP_HOME’, ”);
define(‘WP_SITEURL’, ”);
登入後複製

保存,OK了!但是這種修改方式是只能用戶網站根目錄,並且使用預設的80端口

如果你不是用網站的根目錄,或者用非80端口,那就用第二種方法

2.開啟wp-includes/post.php文件,修改函數wp_get_attachment_url(3.7.1在4276行)為如下程式碼

function wp_get_attachment_url( $post_id = 0 ) {
$file_dir=dirname(__FILE__);
$server_root=$_SERVER[DOCUMENT_ROOT];
$file_dir=substr($file_dir,strlen($server_root));
$file_dir=substr($file_dir,0,-12);
if($file_dir!=”){
$file_dir=’/’.substr($file_dir,1);
}
$post_id = (int) $post_id;
if ( !$post =& get_post( $post_id ) )
return false;
$url = ”;
if ( $file = get_post_meta( $post->ID, ‘_wp_attached_file’, true) ) { //Get attached file
if ( ($uploads = wp_upload_dir()) && false === $uploads['error'] ) { //Get upload directory
if ( 0 === strpos($file, $uploads['basedir']) ) //Check that the upload base exists in the file location
//$url = str_replace($uploads['basedir'], $uploads['baseurl'], $file); //replace file location with url location
$url=$file_dir.”/wp-content/uploads/”.$file;
elseif ( false !== strpos($file, ‘wp-content/uploads’) )
//$url = $uploads['baseurl'] . substr( $file, strpos($file, ‘wp-content/uploads’) + 18 );
$url=$file_dir.”/wp-content/uploads/”.$file;
else
//$url = $uploads['baseurl'] . “/$file”; //Its a newly uploaded file, therefor $file is relative to the basedir.
$url=$file_dir.”/wp-content/uploads/”.$file;
}
}
if ( empty($url) ) //If any of the above options failed, Fallback on the GUID as used pre-2.7, not recomended to rely upon this.
$url = get_the_guid( $post->ID );
if ( ‘attachment’ != $post->post_type || empty($url) )
return false;
return apply_filters( ‘wp_get_attachment_url’, $url, $post->ID );
}
登入後複製

#儲存,OK了

#這樣你以後寫的文章日誌裡面的多媒體檔案路徑都是用相對路徑了,更換網域空間之後圖片位址不會失效!

以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!

相關推薦:

WordPress支援多個網域綁定/存取的實作

以上是如何修改WordPress圖片位址為相對路徑的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!