DevPress

index.php

2024-07-15 | Theme, WordPress | 코멘트 0개

<?php get_header(); ?>
<main class="wrap">
  <section class="content-area content-thin">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
      <article class="article-loop">
        <header>
          <h2><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
          By: <?php the_author(); ?>
        </header>
        <?php the_excerpt(); ?>
      </article>
<?php endwhile; else : ?>
      <article>
        <p>글을 찾을 수 없습니다.</p>
      </article>
<?php endif; ?>
  </section><?php get_sidebar(); ?>
</main>
<?php get_footer(); ?>
  • <?php the_permalink(); ?> – 게시물의 실제 URL을 출력합니다.
  • <?php the_title_attribute(); ?> – 글 제목을 요소 속성과 호환되는 형식으로 표시합니다.
  • <?php the_title(); ?> – 글 제목을 표시합니다.
  • <?php the_author(); ?> – 게시물의 작성자 이름을 출력합니다.
  • <?php the_excerpt(); ?> – 게시물의 발췌문을 추출하며, 작성하지 않으면 자동으로 생성됩니다.

0개의 댓글

댓글 제출

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다