この記事では、WordPress の画像アドレスを相対パスに変更する方法を主に紹介します。必要な友達はそれを参照できるようにします。この方法では、誰かがあなたの記事を他の Web サイトにコピーしても、写真は正常に表示されますが、ブログのドメイン名やパスを変更したい場合、これらの写真のアドレスは無効になります。正常に表示できません。
Yousou.comインターネット上で WordPress テンプレート画像に相対パスを使用する問題を解決する 2 つの方法を見つけました。皆さんのお役に立てれば幸いです。 1. WordPress テーマのルート ディレクトリにある wp-config.php を変更します。このファイルは、WordPress をインストールした後にのみ表示されます。
define(‘WP_HOME’, ”); define(‘WP_SITEURL’, ”);
保存します。ただし、この変更方法で使用できるのは、ユーザー ネットワーク Web サイトのルート ディレクトリとデフォルト ポート 80 のみです
Web サイトのルート ディレクトリを使用していない場合、または 80 以外のポートを使用している場合は、2 番目の方法を使用してください。
2. wp-includes/post.php ファイルを開き、関数 wp_get_attachment_url (4276 行目の 3.7.1) を次のコードに変更します
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 中国語 Web サイトをご覧ください。
関連する推奨事項:
WordPress は複数のドメイン名のバインド/アクセスの実装をサポートします以上がWordPressの画像アドレスを相対パスに変更する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。