이 글에서는 워드프레스 이미지 주소를 상대경로로 수정하는 방법을 주로 소개합니다. 이제 특정 참조값이 있어서 공유합니다.
WordPress 이미지 주소는 기본적으로 절대 경로를 사용하므로 다른 사람이 귀하의 글을 다른 웹사이트에 복사할 때 사진이 정상적으로 표시될 수 있습니다. 그러나 블로그의 도메인 이름이나 경로를 변경하려면 다음과 같이 하세요. 이러한 사진의 주소는 유효하지 않으며 정상적으로 표시될 수 없습니다. 유소왕 인터넷에서 WordPress 템플릿 이미지에 대한 상대 경로 사용 문제를 해결하는 두 가지 방법을 찾았습니다. 모두에게 도움이 되기를 바랍니다.
1. WordPress 테마의 루트 디렉터리에 있는wp-config.php를 수정하세요. 이 파일은 WordPress가 설치된 후에만 나타납니다. 저장하려면
define(‘WP_HOME’, ”); define(‘WP_SITEURL’, ”);
로 수정합니다.
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 ); }
WordPress는 여러 도메인 이름 바인딩/액세스 구현을 지원합니다.
위 내용은 WordPress 이미지 주소를 상대 경로로 변경하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!