반응형
워드프레스 포스트 루프 show post_name / slug
워드프레스 투고를 루프하기 위해 이 PHP 코드를 실행하고 있습니다.
$posts = get_posts('numberposts=10&order=ASC&orderby=post_title');
foreach ($posts as $post)
{
setup_postdata( $post );
the_date();
echo '<br />'; ?>
<a href="/blog2/"><?php the_title(); ?></a>
<?php the_excerpt(); ?>
<br><hr /><br>
<?php
}
각 게시물의 post_name 또는 'slug'을 표시할 수 있도록 하고 싶다.
사용해보았습니다.echo $posts->post_name;
아무것도 표시되지 않습니다.
타이틀은 다음 순서로 취득할 수 있습니다.$post->post_title
이름/슬래그는 다음 방법으로 얻을 수 있습니다.$post->post_name
다음 방법으로 투고를 받을 수 있습니다.
echo $post->post_name;
코드를 수정했습니다.
<?php
$posts = get_posts('numberposts=10&order=ASC&orderby=post_title');
foreach ($posts as $post) {
setup_postdata( $post );
the_date();
echo '<br />'; ?>
<a href="/blog2/"><?php the_title(); ?></a>
<?php echo $post->post_name; ?>
<?php the_excerpt(); ?>
<br><hr /><br>
<?php
}
?>
언급URL : https://stackoverflow.com/questions/21043032/wordpress-posts-loop-show-post-name-slug
반응형
'programing' 카테고리의 다른 글
"JSX 요소에 암묵적으로 "임의" 유형의 오류가 있습니다."를 해결하는 방법 (0) | 2023.03.12 |
---|---|
Oracle SQL 삽입 With 절 (0) | 2023.03.12 |
serde를 사용하여 예쁜 JSON 생성 (0) | 2023.03.12 |
javascript는 $.ajax는 함수가 아닙니다.라는 오류를 반환하고 있습니다. (0) | 2023.03.12 |
$_GET 및 Word Press (0) | 2023.03.12 |