방금 포스트 형식 의 개념에 들어갔고 왜 포스트 형식 "API"의 3 가지 기능 중 2 가지가 동일한 기능을 제공하는지 궁금했습니다. 다음 두 가지 개념 (A와 B)을 고려하십시오.
if ( have_posts() )
{
while ( have_posts() )
{
the_post();
// A) has_post_format
if ( has_post_format('format') )
{
the_excerpt(); // some special formating
}
// VERSUS:
// B)
if ( get_post_format( $GLOBALS['post']->ID ) == 'format' )
{
the_excerpt(); // some special formating
}
} // endwhile;
} // endif;
누군가 ex 대신 두 기능이 왜 있는지 설명해 주시겠습니까? get_post_format
? 다른 기능으로 수행 할 수없는 상황에 대한 예를 제공 할 수 있다면, 나는 행복하고 +1 할 것입니다.
get_template_part
정말 똑똑!