지난 글 목록으로 보기? – 한국워드프레스사용자모임 https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/feed/ Sat, 27 Apr 2024 08:14:01 +0000 https://bbpress.org/?v=2.6.9 ko-KR https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-798 <![CDATA[지난 글 목록으로 보기?]]> https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-798 Mon, 23 Jan 2006 23:50:33 +0000 😀 문제가 해결되었습니다.
까막눈으로 이것저것 손질하려니 답답했는데
친절한 답변 감사합니다.

]]>
https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-799 <![CDATA[Reply To: 지난 글 목록으로 보기?]]> https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-799 Mon, 23 Jan 2006 23:50:33 +0000 어제 워드프레스 깔고 계속 헤매고 있습니다^^;

카테고리를 누르면 지난 글들이 펼쳐보기로 쭉 뜨는데
목록보기로 보이는 방법은 없을까요?
플러그인이 필요한가요??

아시는 분은 답변 부탁합니다~~

]]>
https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-803 <![CDATA[Reply To: 지난 글 목록으로 보기?]]> https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-803 Mon, 23 Jan 2006 23:50:33 +0000 어제 워드프레스 깔고 계속 헤매고 있습니다^^;

카테고리를 누르면 지난 글들이 펼쳐보기로 쭉 뜨는데
목록보기로 보이는 방법은 없을까요?
플러그인이 필요한가요??

아시는 분은 답변 부탁합니다~~

]]>
https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-800 <![CDATA[Reply To: 지난 글 목록으로 보기?]]> https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-800 Tue, 24 Jan 2006 03:46:28 +0000 Gosinga

카테고리를 누르면 지난 글들이 펼쳐보기로 쭉 뜨는데
목록보기로 보이는 방법은 없을까요?

이런 간단한 경우는 플러그인이 없습니다. 다음 파일의 관련 내용을 수정하셔야 됩니다.

=== /wp-content/themes/default[or your themes name]/ -> archive.php 에서 ===

  39  <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
  40  <small><?php the_time('l, F jS, Y') ?></small>
  41                 
  42  <div class="entry">
  43    <?php the_content() ?>
  44  </div>

위의 코드에서 출력 부분만 뽑아보면 다음과 같겠지요.

39     <h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>     // 포스트 제목과 링크
40     <small><?php the_time('l, F jS, Y') ?><small>     // 포스트 작성시각
42~44  <div class="entry"><?php the_content() ?></div>     // 포스트 요약문

이 부분들을 마음에 맞게 수정하셔야 됩니다. 가령 42~44행을 전부 삭제하면 ‘포스트 제목’과 ‘포스트 작성시각’만 출력됩니다. 또 예로, 39행의 <h3></h3>를 <p></p>로 수정하면 포스트 제목이 일반글자의 크기로 출력되겠지요.

위의 내용에서 the_title(), the_permalink(), the_time(), the_content()는 워드프레스의 템플릿 관련 함수입니다. WordPress Codex에서는 이런 함수들을 ‘템플릿 태그’라고 부르고 있습니다. 거의 대부분의 궁금한 사항은 WordPress Codex에서 이미 설명해 놓은 사항이므로 이를 먼저 찾아보시면 편하실 겁니다.

]]>
https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-804 <![CDATA[Reply To: 지난 글 목록으로 보기?]]> https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-804 Tue, 24 Jan 2006 03:46:28 +0000 Gosinga

카테고리를 누르면 지난 글들이 펼쳐보기로 쭉 뜨는데
목록보기로 보이는 방법은 없을까요?

이런 간단한 경우는 플러그인이 없습니다. 다음 파일의 관련 내용을 수정하셔야 됩니다.

=== /wp-content/themes/default[or your themes name]/ -> archive.php 에서 ===

  39  <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
  40  <small><?php the_time('l, F jS, Y') ?></small>
  41                 
  42  <div class="entry">
  43    <?php the_content() ?>
  44  </div>

위의 코드에서 출력 부분만 뽑아보면 다음과 같겠지요.

39     <h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>     // 포스트 제목과 링크
40     <small><?php the_time('l, F jS, Y') ?><small>     // 포스트 작성시각
42~44  <div class="entry"><?php the_content() ?></div>     // 포스트 요약문

이 부분들을 마음에 맞게 수정하셔야 됩니다. 가령 42~44행을 전부 삭제하면 ‘포스트 제목’과 ‘포스트 작성시각’만 출력됩니다. 또 예로, 39행의 <h3></h3>를 <p></p>로 수정하면 포스트 제목이 일반글자의 크기로 출력되겠지요.

위의 내용에서 the_title(), the_permalink(), the_time(), the_content()는 워드프레스의 템플릿 관련 함수입니다. WordPress Codex에서는 이런 함수들을 ‘템플릿 태그’라고 부르고 있습니다. 거의 대부분의 궁금한 사항은 WordPress Codex에서 이미 설명해 놓은 사항이므로 이를 먼저 찾아보시면 편하실 겁니다.

]]>
https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-801 <![CDATA[Reply To: 지난 글 목록으로 보기?]]> https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-801 Tue, 24 Jan 2006 05:51:42 +0000 답변 고맙습니다^^ 덕분에 잘 됩니다.

포스트 제목,날짜,코멘트를 한줄로 만들었는데
포스트와 포스트 제목 사이 칸이 너무 넓습니다.
———————
[포스트제목]

[포스트 제목]
———————

정말 목록처럼 붙이고 싶은데 어딜 고쳐야 할지,,,
archive.php와 style.css를 살펴 봤는데 잘 모르겠네요,,,
자꾸 질문해서 죄송,,,

]]>
https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-805 <![CDATA[Reply To: 지난 글 목록으로 보기?]]> https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-805 Tue, 24 Jan 2006 05:51:42 +0000 답변 고맙습니다^^ 덕분에 잘 됩니다.

포스트 제목,날짜,코멘트를 한줄로 만들었는데
포스트와 포스트 제목 사이 칸이 너무 넓습니다.
———————
[포스트제목]

[포스트 제목]
———————

정말 목록처럼 붙이고 싶은데 어딜 고쳐야 할지,,,
archive.php와 style.css를 살펴 봤는데 잘 모르겠네요,,,
자꾸 질문해서 죄송,,,

]]>
https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-802 <![CDATA[Reply To: 지난 글 목록으로 보기?]]> https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-802 Tue, 24 Jan 2006 06:43:47 +0000 Gosinga bbub Escribi

]]>
https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-806 <![CDATA[Reply To: 지난 글 목록으로 보기?]]> https://kopress.kr/topic/%ec%a7%80%eb%82%9c-%ea%b8%80-%eb%aa%a9%eb%a1%9d%ec%9c%bc%eb%a1%9c-%eb%b3%b4%ea%b8%b0/#post-806 Tue, 24 Jan 2006 06:43:47 +0000 Gosinga bbub Escribi

]]>