How to Make HTML Pages Work Like Wordpress 같은 동작을 만드는 방법을 wordpress 페이지
June 7th, 2007 · by David Bradley 2007년 6월 7일로 데이비드 브래들리
Do you have a bunch of standard html pages outside your Wordpress blog heirarchy? 무리의 표준 페이지에 있으십니까 wordpress 블로그 외부의 계층 구조? I’m not taking about Wordpress’ static “Pages” with a capital P, but those pages, perhaps in the root beyond the CMS facility of Wordpress. 나는 받아들이지 않는 wordpress에 대해 '정적 "페이지"를 자본 ㄱ,하지만, 그 페이지에, 아마 cms 시설의 루트 넘어 wordpress합니다. Well, there is a relatively simple way to convert a standard html page into a kind of Wordpress page, so that your header, sidebar, and footer all render as if the page were a standard Wordpress page. 그렇다면, 거기는 비교적 간단한 방법으로 변환하는 표준 페이지를 일종의 wordpress 페이지, 그래서 당신의 헤더, 사이드바,이 경우 해당 페이지로 렌더링 및 바닥글의 모든 표준 wordpress 페이지를합니다.
1. First, make a back up of any pages you plan to change, then add this line to the head section of each page you want to re-theme within the Wordpress system on your site. 첫째로, 어떤 페이지를 백업하는 만들 계획을 변경, 다음 라인을 추가하려는 각 페이지의 머리 부분 - 주제에 wordpress 시스템을 다시 귀하의 사이트를합니다.
<?php define(’WP_USE_THEMES’, false); require(’./your-wordpress-folder/wp-blog-header.php’); ?> <함수를 정의 ( 'wp_use_themes', 허위);이 필요 ( '. / 당신 - wordpress - 폴더 / 백린 - 블로그 - header.php');?>
That calls in the necessary code from the Wordpress folder (obviously change “your-wordpress-folder” to the actual directory name). 을하는 데 필요한 코드를 호출하는 wordpress 폴더 (명백하게 변경 "당신의 - wordpress - 폴더"를 실제 디렉토리 이름).
2. Next, decide which components you’re going to need for the page. 그런 다음, 구성 요소를 결정하는 페이지에 대한 당신은 꼭 필요합니다. You’ll probably want the header from your theme so add 당신의 주제의 헤더에서 원하는 수있을 것입니다 그래서 장바구니
<?php get_header(); ?> <함수 get_header ();?>
Put that near the top after the body tag. 그 이후의 상단 본문 태그합니다.
3. You’ve probably got a footer in your theme too, so add this to the bottom of the page before the close body tag 꼬리말 아마도 당신은 당신의 주제가 너무, 그래서 이것을 추가하기 전에 페이지 하단의 본문 태그를 닫습니다
<?php get_footer(); ?> <함수 get_footer ();?>
4. Then comes a tricky bit. 다음은 참 까다로운 비트합니다. Where to put the sidebar? 사이드바에 그 어디에? It depends. 상황에 따라합니다. Try it just before the footer tag you added in the previous step first. 꼬리말 태그를 시도하기 전에 단지를 추가 이전 단계에서 첫 번째합니다. We can come back later and move it if it doesn’t work properly. 할 수있다면 나중에 다시하고 이동이 제대로 작동하지 않습니다.
<?php get_sidebar(); ?> <함수 get_sidebar ();?>
5. Now, smart readers will have noticed you’ve probably been adding a load of php tags to pages with an htm or an html and that opening these in your browser is just going to display the code without running it. 지금, 스마트 독자가이 눈치를 아마 php에 태그를 페이지에 추가하는 부하를 htm이나 제목과 그 오프닝에서 이러한 브라우저가 그것을 실행하지 않고 코드를 표시하는 것. So, there’s one final critical step you must take before things will work as planned. 그래서,이 단계를 수행해야하기 전에 마지막으로 중요한 일들은 계획대로 작동합니다. Open up your .htaccess file (you know where that is I take it, root folder, no filename just the extension htaccess (don’t forget the dot). Make a backup copy. Then add the following line: 당신의 개방합니다. htaccess 파일 (당신이 어디인지 알고있다 알겠어요, 루트 폴더, 지역 파일명 단지 확장 htaccess (를 잊지 마세요 점)합니다. 백업 복사본을 만듭니다. 다음에 다음 라인 :
AddHandler application/x-httpd-php .php .html .htm AddHandler를 사용 응용 프로그램 / x - 웹서버 - php. php. html합니다. htm
and save the .htaccess file. 을 저장합니다. htaccess 파일을합니다. This will then allow the browser to parse the php in pages with the htm and html extensions as well as the php extension. 이것은 다음 페이지를 수있는 브라우저를 구문 분석하여 php에서 htm, html 확장자를 php 확장 기능뿐만 아니라합니다.
Couple of things to watch out for: if you cut and paste the above code, ensure the quotes are single straight quote marks and the angle brackets are proper code not greater and less than signs. 주의해야 할 두 가지 정도 : 만약 위의 코드 잘라내기 및 붙여넣기 확인 따옴표는 단 하나 똑바로 인용 부호와 적절한 코드를 꺾쇠 괄호는 큰 및 미만의 징후 없다.
Also, make sure you double check the resulting meta tags for these pages, it might result in losing 또한, 결과 확인 메타 태그를 두 번 확인합니다 이러한 페이지에 결과를 잃을 수도 RSS autodiscovery rss 자동 검색 or changes in your carefully honed title tags. 또는 변경에 신중을 연마 제목 태그합니다. Also, you generally will not be able to enable comments on these pages as you might do with a static Page within Wordpress proper. 또한, 일반적으로 사용하지 못할 수가 이러한 페이지에 대한 의견을 정적으로 페이지를 할 수있습니다 wordpress 적절한합니다. If anyone knows how to workaround the comments disabled default for this kind of page, please leave a comment. 이것이 누구라도 의견 장애인 기본으로 해결하는 방법을 알고 이런 종류의 페이지에 코멘트를 남겨주시기 바랍니다. I’d love to enable comments across the whole of the Sciencebase.com site on which I make extensive use of this format. 전체를 듣고 싶습니다 전체의 코멘트를 활성화해야 sciencebase.com 광범위하게 사용하고있는 사이트에이 형식을합니다.


















34 responses so far ↓ 응답을 지금까지 34 ↓
Ben 벤 // / / Jun 7, 2007 at 4:16 pm 2007년 6월 7일에서 오후 4시 16분
Why not just convert all your legacy pages (with a little p) into static pages within the Wordpress system and then relocate the subfolder to the site’s root? 뿐만 아니라 귀하의 레거시 이유로 변환의 모든 페이지 (약간 p)를 정적 페이지를 wordpress 시스템과 하위 폴더를 이전에 해당 사이트의 루트? Job done. 일을합니다.
David Bradley 데이비드 브래들리 // / / Jun 7, 2007 at 4:18 pm 2007년 6월 7일에서 오후 4시 18분
That would be one way of doing things, Ben, but what if you have thousands of pages in standard html, that’s an awful lot of cutting and pasting. 그것은이 일을 한 방법, 벤, 그러나 어떤 경우에는 수천 페이지의 표준, 그 외딴 많은 절단 및 붙여넣기합니다. Also, there might be reasons why you want to keep the blog part in its own folder and have standalone chunks in the root. 또한,이있을 수있습니다의 블로그 유지하려는 이유가 자신의 폴더에 참여하고 독립 실행형 덩어리의 루트합니다.
deb 뎁 // / / Jan 15, 2008 at 2:02 am 2008년 1월 15일에서 오전 2시 2분
I’m having a problem doing the opposite of what you instructed. 반대로 나는 무엇을하고있는 데 문제의 지시합니다. I want to add a bunch of html pages on the root of my directory and having a hard time. 무리의 페이지를 추가하는 싶어요의 루트에 내 디렉토리 및하는 데 어려움을 겪고있습니다.
I would like a thankyou, about, seemore, page etc, and It keeps calling my 404 page. 감사는처럼 나는, 약, seemore, 페이지 등, 그리고이 계속 전화를 내 404 페이지합니다. how do I stop it? 멈춰하려면 어떻게해야합니까?
Thanks.l thanks.l
David Bradley 데이비드 브래들리 // / / Jan 15, 2008 at 7:16 am 2008년 1월 15일에서 오전 7시 16분
Deb, do you mean you are trying to create static pages in Wordpress called from the homepage, or are you making standalone pages but don’t want to have them use the WP template? 뎁, 당신은 당신이 정적 페이지를 만들려고 wordpress의 홈페이지에서 호출하거나 독립 실행형 페이지를 만드는 당신을 싫어하지만 그들 백린 템플릿을 사용하는가? Please clarify and someone here might be able to assist. 그리고 누군가가 여기에 명확하게하시기 바랍니다을 지원 수 있을지도 모릅니다.
First thought, did you double check the links you’re using? 제일 먼저하는 생각은, 당신을 이중으로 확인할에있는 링크를 사용하는가?
db dB
deb 뎁 // / / Jan 17, 2008 at 6:57 am 2008년 1월 17일에서 오전 6시 57분
What i want to do is create standalone pages. 내가하고 싶은은 독립 실행형 페이지를 작성합니다. that don’t call the template. 가 필요하지 않은 템플릿을 호출합니다. I want a thankyou.html page for example. 예를 들면 thankyou.html 페이지를 갖고 싶어요. And I can’t seem to get it working. 그리고 난 일을 해 보일 수 없다. it keeps calling the the template. 템플릿을 유지 해를 호출합니다.
Also, I’ve created a folder called thankyou right at the root of the domain. 또한, 나는라는 폴더를 만들었습니다 도메인의 루트에서 오른쪽으로 감사합니다. added a page in it called index.html and the darn thing still calls the wp template. index.html과 제목이 페이지에 추가하는 이런 일이 아직도 백린 템플릿을 호출합니다. I am totally baffled. 나는 완전히 당황하고합니다.
Please help. 제발 도와합니다.
David Bradley 데이비드 브래들리 // / / Jan 17, 2008 at 7:31 am 2008년 1월 17일에서 오전 7시 31분
Deb, that is very odd. 뎁, 그것은 매우 이상한합니다. If you are creating the pages within Wordpress then that’s bound to happen, but if you are simply creating a standard html page and then uploading it to the root then make sure you haven’t added the includes for WP. 페이지를 만들 경우에는 반드시 일어날 wordpress 그렇다면 그건,하지만 표준을 만드는 경우에는 페이지를 간단하게하고 그것을 업로드하는 루트를 확인하지 않았을 추가했다 백린 포함합니다. Could you either email the source code for the troublesome pages or point me to those pages and I’ll take a look. 수 중 하나의 소스 코드를 이메일로 보내 문제의 페이지 또는 포인트 나에게 해당 페이지를 그리고 내가 좀합니다.
db dB
deb 뎁 // / / Jan 18, 2008 at 3:37 am 2008년 1월 18일에서 오전 3시 37분
Thanks DB, 감사합니다 ㏈,
You are right. 당신이 권리합니다. That’s exactly what im trying to do. 우리가 정확히 무엇 메신저 해보려고합니다. However, i just can’t get the darn thing to work. 그러나, 이런 행동을 그냥 안 가져와 작동합니다.
I am really frustrated at this point so im gonna go and hire some help. 그래서 나는이 시점에서 정말 좌절 메신저 가서 도움을 고용합니다. A sista can’t be waisting three days trying to figure out this techie stuff 3 일 waisting a 아가씨 수없습니다 물건을 찾으려 노력이 기술
Thanks for all your help though. 비록 모든 당신의 도움을 주셔서 감사합니다.
DG dg
TATHAGAT tathagat // / / Feb 2, 2008 at 8:26 am 2008년 2월 2일에서 오전 8시 26분
please send the process of making html page 이 과정을 보내주시기 바랍니다 페이지 만들기
David Bradley 데이비드 브래들리 // / / Feb 2, 2008 at 9:29 am 2008년 2월 2일에서 오전 9시 29분
Send it where Tathagat? tathagat 전송 어디에? It’s right here. 그것은 바로 여기있습니다. On the page 페이지에있는
db dB
Ariela ariela // / / Mar 6, 2008 at 10:01 pm 2008년 3월 6일에서 오후 10시 1분
Hey, 어이,
I think I followed your directions exactly, but nothing is showing up on the page. 정확하게 지시를 따랐다고 것 같아요,하지만 페이지에있는 아무 것도 표시합니다.
Ariela ariela
David Bradley 데이비드 브래들리 // / / Mar 7, 2008 at 7:40 am 2008년 3월 7일에서 오전 7시 40분
Ariela, what is the file extension for the page? ariela, 페이지에 대한 파일 확장자는 무엇입니까? If it’s not “.php” (could be .htm, .html instead), do you have those file extensions set to be read as php by your server? 그렇지 않을 경우 "합니다. php"(수있습니다. htm,. html 대신에), 그 파일 확장자를 설정할 수 있으로 다음 명령을 읽고 귀하의 서버가?
to do that, you need this line in your .htaccess file: 그러려면,이 라인에이 필요합니다. htaccess 파일 :
AddHandler application/x-httpd-php .php .html .htm AddHandler를 사용 응용 프로그램 / x - 웹서버 - php. php. html합니다. htm
db dB
Ariela ariela // / / Mar 7, 2008 at 7:50 am 2008년 3월 7일에서 오전 7시 50분
Thanks for getting back to me so fast… 너무 빨리 돌려 보내 주셔서 감사합니다…
The file extension was .php, but I ended up going in a different direction — I’m building a theme to apply to the blog that looks just like my webpage. 이 파일 확장자가. php,하지만 결국 다른 방향으로 들어간다 - 전 건물의 블로그의 주제에 적용할 모양이 꼭 내 웹페이지합니다.
Thanks, though! 어쨌든, 고마워!
David Bradley 데이비드 브래들리 // / / Mar 7, 2008 at 10:44 am 2008년 3월 7일에서 오전 10시 44분
Ah, okay, wonder why it failed then…caching perhaps? 아, 그래, 왜 실패를… 캐싱을 런 지요? Let us know how you get on. 을 얻는 방법을 알려주시기 바랍니다.
You’ve got some lovely photos on your site by the way! 멋진 사진을 귀하의 사이트에가 있는데? 그런데! You may care to check out my public 내 공개주의를 체크 아웃 수도있습니다 flickr gallery flickr 갤러리
db dB
Ariela ariela // / / Mar 8, 2008 at 8:17 am 2008년 3월 8일에서 오전 8시 17분
Hey, so I ended up building a theme that looked like my web page and everything worked, but I came across another problem, and am hoping that you have an answer. 안녕하세요, 그래서 결국 건물 내 웹 페이지의 주제가처럼, 모든 일이지만 우연히 또 다른 문제, 그리고 오전에 대한 답변을 것으로 기대합니다. The one thing that’s not working is that the images aren’t showing up — they’re little blue diamonds with the question marks. 유일하게 작동하지 않는 그것의 이미지가 표시되지 않습니다 - 그들은 거의 청색 다이아몬드에 물음표합니다. I checked and double checked all the image paths. 경로를 확인하고 두 검사의 모든 이미지를합니다. They are all, by the way, in the header.php and the footer.php. 그들은 모두, 그런데,이 header.php와 footer.php합니다. Any idea what I did wrong? 어떤 생각이 어쩔 수 없었 잘못 했나요?
Thanks! 감사합니다! (and thanks for the compliments on the photos — I’ll let the photographer know!) (그리고 칭찬을 주셔서 감사합니다 사진 - 사진 잘 알고에게 알려주지!)
Scott 스콧 // / / Apr 14, 2008 at 6:00 am 2008년 4월 14일은 오전 6시
That is brilliant. 정말 멋지 네요. Technical, but brilliant. 기술, 그러나 똑똑합니다. I moved from HTML to WP a year ago and had a bunch of pages I just copied over cause I was too lazy to convert them. 1 년 전부터 html을 백린 전 이사를 한 뭉치의 페이지를했고 난 너무 게으른 원인 단지를 통해 복사으로 전환시킬 수있습니다.
I am definitely bookmarking this page. 나는이 페이지를 즐겨찾기에 분명합니다. Thanks! 감사합니다!
Minnesota Investment Property’s last blog post.. 미네소타 투자 재산의 마지막 블로그 게시물 .. Stupid Property Repairs #3 어리석은 재산 수리 # 3
Luke // 루크 / / Apr 23, 2008 at 3:55 am 2008년 4월 23일에서 오전 3시 55분
David, 데이비드,
When I tried this, I got the following: 그사 람이, 난 다음과 같은 :
Parse error: syntax error, unexpected ‘?’ in /xxxx/xxxx on line 159 구문 분석 오류 : 구문 오류가 발생, 예상치 못한 '?'에서 / xxxx / xxxx 159 행에
I know next to nothing about php, so I copied and pasted exactly what you typed, with the proper ‘ and . 옆에있는 나는 대해 아무것도 알지 php, 그래서 바를 정확하게 전달할 수 입력된 복사하여 붙여넣과 적절한 '및합니다.
Any ideas as to what I’m doing wrong? 어떤 아이디어로 지금 우리가하고있는 잘못 했나요?
David Bradley 데이비드 브래들리 // / / Apr 23, 2008 at 7:43 am 2008년 4월 23일에서 오전 7시 43분
Luke, you checked the single quote marks, did you check the angle brackets? 루크, 작은 따옴표를 체크 마크, 꺾쇠 괄호를 확인나요?
db dB
Luke // 루크 / / Apr 23, 2008 at 4:57 pm 2008년 4월 23일에서 오후 4시 57분
David, 데이비드,
I checked those as well. 이들을 잘 확인합니다. I included the angle brackets in my previous post, but they must have been cut out. 나는 나의 이전 포스트에서 꺾쇠 괄호 포함되어있습니다,하지만 그들을 도려내이 있어야합니다.
I just sent you an email with more specific information. 단지 더 구체적인 정보를 이메일로 보낸합니다.
Luke 루크
David Bradley 데이비드 브래들리 // / / Apr 23, 2008 at 5:09 pm 2008년 4월 23일에서 오후 5시 9분
Thanks for the follow-up. 다음 -을 주셔서 감사합니다. You explained in an email that you’re creating a standalone page you want to theme as if it were part of your blog, but your Wordpress blog is actually in the root of your domain, so there is actually no need to use my workaround. 당신의 설명에있는 이메일을 만드는 당신은 독립 실행형 페이지에서 원하는 부분을 테마로 블로그를이라면,하지만 당신의 루트에 wordpress 블로그는 사실은 귀하의 도메인에, 그래서 우리가 실제로 내 해결 방법을 사용할 필요가없습니다.
Simply create a “Page” with the content you sent me, tweak the permalink and everything should be fine. 간단하게 만들기 "페이지"를 콘텐츠를 보내셨어요, 그리고 모든 괜찮을 매료 기정 연결합니다.
If you really must do it this way then try the code without the period before the slash, and if that doesn’t work remove the slash too. 만약에 정말로 이런식으로 생각해야합니다없이는 시대의 코드를 시도하기 전에 다음 슬래시, 그리고 만약 문제가 해결되지 않는 슬래시를 제거합니다 너무합니다.
Let us know how you get on. 을 얻는 방법을 알려주시기 바랍니다.
db dB
Bob O'Haver 밥 o'haver // / / May 16, 2008 at 6:29 pm 2008년 5월 16일에서 오후 6시 29분
I have a site that I need to add the current post to the top of a HTML page. 나는 당신이 필요로하는 사이트에 게시물을 올릴 장바구니의 현재 페이지의 상단합니다. Will this work for that? 이 작업을하는 것 아닌 가요?
What is the code just to bring in the current post? 은 무엇입니까 코드는 현재 게시물을 데려오려고?
Thanks 감사합니다
David Bradley 데이비드 브래들리 // / / May 16, 2008 at 6:44 pm 2008년 5월 16일에서 오후 6시 44분
Bob, that should work with this code. 밥, 그것은이 코드를 작동합니다. You’d need to add the Wordpress loop (see the main index file in your template) and set it to display just one post. 당신이 필요 wordpress 루프를 추가합니다 (자세한 내용은 메인 인덱스 파일의 서식 파일)을 설정합니다 단지 하나의 게시물을 표시합니다.
db dB
Kimberley 킴벌리 // / / May 18, 2008 at 8:27 pm 2008년 5월 18일에서 오후 8시 27분
David, 데이비드,
Im getting the same similar error that Luke reported. 메신저 같은 유사한 오류 메시지가 도착 루크 보도합니다.
I know that you said the following: “Couple of things to watch out for: if you cut and paste the above code, ensure the quotes are single straight quote marks and the angle brackets are proper code not greater and less than signs.” 다음과 같은 생각하는 거 압니다 말했다 : "두 가지 정도를 매길 것이다 : 만약 위의 코드 잘라내기 및 붙여넣기 확인 따옴표는 단 하나 똑바로 인용 부호와 적절한 코드를 꺾쇠 괄호는 큰 및 미만의 징후 없다."
But I dont see any quote marks or greater/less than signs to correct. 하지만 난 밖에 나가 인용 부호가 전혀 나타나지 않는 이상 / 미만의 조짐을 수정합니다.
Any ideas? 어떤 아이디어?
David Bradley 데이비드 브래들리 // / / May 19, 2008 at 8:31 am 2008년 5월 19일에서 오전 8시 31분
Kimberley, they’re right there up above… 킴벌리, 그들은 바로 위에서…
You have to add this to the source of your page: 당신은 이것을 페이지의 소스를 추가 :
< ?php define('WP_USE_THEMES', false); require('./your-wordpress-folder/wp-blog-header.php'); ?> <함수를 정의 ( 'wp_use_themes', 허위);이 필요 ( '. / 당신 - wordpress - 폴더 / 백린 - 블로그 - header.php');?>
You are on an Apache system, yes? 당신은 아파치에서 시스템, 네?
db dB
Kimberley 킴벌리 // / / May 20, 2008 at 1:45 am 2008년 5월 20일에서 오전 1시 45분
Okay, I went back tonight to look at the code and my ‘ were slanted… So fixed that. 그래, 난의 코드를 보면서 이런 생각을하고 돌아갔습니다 오늘 내 '가 대각선… 그래서 고정을합니다. Im not sure it did anything. 메신저 모르는 게 아무것도합니다. Im not getting the Parse error: syntax error, unexpected ‘?’ in /xxxx/xxxx on line 159 error anymore. 메신저받을 수 없다 구문 분석 오류 : 구문 오류가 발생, 예상치 못한 '?'에서 / xxxx / xxxx 번 라인에 159 오류가 더 이상합니다. What’s happening is that the page sort of loads itself, but the images disappear. 이 페이지는 무슨 일이 일어나는 종류의 부하 그 자체지만 이미지를 사라집니다. The link is: 해당 링크는 :
http://www.dreamsofmidnight.com/DreamsWeDreampt/index-new.html http://www.dreamsofmidnight.com/dreamswedreampt/index-new.html
[ Yes I know "Dreampt" is spelled wrong. [예 알고 "dreampt"는 철자가 틀린합니다. Just a test folder. 그냥 테스트 폴더에있습니다. =) ] = 0)]
David Bradley 데이비드 브래들리 // / / May 20, 2008 at 7:45 am 2008년 5월 20일에서 오전 7시 45분
Hi Kimberley and thanks for your 3 attempts and an email. 안녕하세요 킴벌리와 3 시도 및 이메일을 주셔서 감사합니다. All got through. 모든 연락을합니다. Your comments did “stick” it’s just it was night here so I wasn’t at my computer to approve them. 귀하의 의견 한 "스틱"이건 그냥 밤이 여기에 그래서 난 내 컴퓨터에 참석하지 않았던 그들을 승인합니다. You should’ve seen a message, however, to say that comments require approval so apologies if that wasn’t apparent. 에 메시지를 봤어야하는데, 그러나, 그래서 사과를 말할 승인을 필요로하는 코멘트가 아니라면 분명합니다.
db dB
David Bradley 데이비드 브래들리 // / / May 20, 2008 at 7:47 am 2008년 5월 20일에서 오전 7시 47분
Kimberley (again) - I mentioned in the post that readers should check that quotes are straight and angle brackets working as html rather than being converted. 킴벌리 (다시) - 전에서 언급한 게시물을 독자 따옴표를 확인해야합니다은 정직과 근무를 형식보다는 꺾쇠 괄호로 변환합니다. But, I did take a look at your code and the javascript for rendering your images is pointing to “http://127.0.0.1:1025/js.cgi?pa&r=2401″ that’sa local (ie your machine) rather than the server, so that’s why they’re not showing up because the script needs to be in your root on the site server. 하지만, 난 당신을보고 귀하의 이미지를 렌더링 코드와 자바 스크립트는 포인팅을 "http://127.0.0.1:1025/js.cgi?pa&r=2401"이것은 지역 (예 : 귀하의 머신)보다는 서버에 나타나지 그래서 그들은 스크립트를해야하기 때문에 사이트 서버의 루트에있습니다.
That said, what benefits are there to serving images via a script, why not make them absolute and then there’s last chance of things breaking, especially for users running NoScript in their browser! 즉, 어떤 장점이 있습니까 이미지를 제공하는 스크립트를 통해, 왜 만들지 그들의 마지막 기회를 절대적인 것들 그리고 파괴, 특히 구분의 브라우저를 실행하는 사용자를 위해!
db dB
Kimberley 킴벌리 // / / May 21, 2008 at 4:09 am 2008년 5월 21일에서 오전 4시 9분
I apologize for all the emails. 의 모든 메일에 대해 사과합니다. I must look like a complete moron. 나는 완전 바보처럼 보이게합니다. However, there was no message showing up on the site, that’s why I thought they weren’t getting through. 그러나,이 사이트에 나타나는 메시지가 없었다, 그래서 그들은 아무 생각이 통과한다. Sorry about that. 죄송합니다.
I’ll check what you mentioned. 당신이 언급을 체크하겠다. And get back to you. 그리고 다시 연락합니다.
David Bradley 데이비드 브래들리 // / / May 21, 2008 at 7:50 am 2008년 5월 21일에서 오전 7시 50분
I just did a test comment post Kimberley and once a message has been submitted you should’ve seen a little notice saying it would appear once moderated and now offering you the option to subscribe to the newsfeed. 방금 테스트를 킴벌리 코멘트를 게시하고 메시지를 한번에 제출되었습니다 조금 통보해야합니다라고 본 적이 한 번가 표시됩니다 중재 그리고 지금 뉴 스피드를 구독 수 있도록 옵션을 제공합니다.
db dB
Sarah 사라 // / / Jun 18, 2008 at 4:12 pm 2008년 6월 18일에서 오후 4시 12분
Hi David, 안녕하세요 데이비드,
We have a problem when trying to add the .html extension to WP Pages (with a cap P). 추가하려고 할 때 문제가있습니다. html 확장자를 백린 페이지 (가 카프 p). Do you know if this is possible and how to go about this? 알아 갈하는 방법에 대해 이것이 가능하며이세요?
Thanks 감사합니다
Sarah 사라
David Bradley 데이비드 브래들리 // / / Jun 18, 2008 at 5:47 pm 2008년 6월 18일에서 오후 5시 47분
Sarah, I am pretty sure there is a workaround, but I’ve not yet implemented it and have been persuaded that there is little point as most users are blind to file extensions in URLs these days. 사라, 나는 확신하고이 문제를 해결하지만 난 아직 구현되지 않았습니다 설득하고 있다고이 지점은 거의 대부분의 사용자들은 파일 확장자에 대한 고마움을 요즘은 URL을합니다. There may, just may, be SEO benefits to having the .html, but I’m not sure what those would be. 이 5 월, 단지 5 월,이 혜택을했던 서재응합니다. html,하지만 어떤 이들은 확실하지 않음.
Have you searched the wordpress forums for an answer? wordpress 공개 토론에 대한 답변을 뒤져 있나요?
Sarah 사라 // / / Jun 18, 2008 at 6:35 pm 2008년 6월 18일에서 오후 6시 35분
Yes, but it seems to be nigh on impossible and not recommended as it involves fiddling with the source code and course there’s future updates to consider. 네,하지만 대부분이 불가능한 것 같습니다과 관련된대로하지 않는 것이 좋습니다 fiddling과 코스가 미래의 소스 코드를 업데이 트를 고려해야합니다. Nonetheless, if there was a workable solution I would consider it, if only for the benefit of SEO considerations - but again as you say, what are the benefits there? 그럼에도 불구하고, 해결 방법가 있었다면 나는하다고 생각하지만, 만약 서재응의 이익을 고려 사항에 대해서만 - 그렇지만로 다시 한 번, 그렇게 말하지 장점은 무엇입니까 있나요?
David Bradley 데이비드 브래들리 // / / Jun 18, 2008 at 7:15 pm 2008년 6월 18일에서 오후 7시 15분
Actually, there may be hidden SEO benefits to having a few Pages on a site that look to all intents and purposes as if they are actually folder structures rather than individual files, I’m thinking 사실, 서재응 혜택을 숨겨져있을 수있습니다 데 몇 페이지에 의도와 목적에 해당하는 사이트의 모든 것처럼 보이는 폴더 구조가 아닌 개별 파일은 실제로, 나는 생각 Google Site Links 구글 사이트 링크를
Data 데이터를 // / / Jun 27, 2008 at 9:15 pm 2008년 6월 27일에서 오후 9시 15분
I’m finding way to make these structure, if possible :- 이러한 구조를 찾는 방법을 나는 가능한 경우 : -
Eg -> 예를 들어 ->
Page structure like this :- 페이지 구조 이렇게 : -
domaincom/page1.html
domaincom/page2.html
and Blog Post like this ( as choosing the /%postname%/ for permanent link structure ) :- 그리고 블로그 게시물 이런 (를 선택하고 / % postname % / 대한 영구적인 링크 구조) : -
domaincom/myblogpost/ domaincom / myblogpost /
domaincom/myblogpost2/ domaincom/myblogpost2 /
…and so on. … 등등.
Would these be possible ? 이들은이 수 있나요?
Thanks for your kind help if there is solution. 종류 도움이있다면 솔루션을 주셔서 감사합니다.
Datas last blog post.. 날짜와 마지막으로 블로그 게시물 .. Computer System 컴퓨터 시스템의
David Bradley 데이비드 브래들리 // / / Jun 29, 2008 at 8:19 pm 2008년 6월 29일에서 오후 8시 19분
Data, check out the Wordpress FAQ and forums for assistance on permalinks. 데이터를 확인하십시오을 permalinks wordpress 자주 묻는 질문 및 공개 토론으로 지원을 요청합니다.
Leave a Comment 코멘트를 남겨주세요