중소기업 브랜드 전략은 ‘가치 제안’과 ‘신뢰 획득’이라는 큰 축을 통해 전략이 세분화되어 있습니다. 이해가 어렵다면 ‘가치’와 ‘신뢰’ 이 2가지 키워드만 기억해도 충분합니다.
//JB 230125 시작
function hwl_home_pagesize( $query ) {
if ( is_admin() || ! $query->is_main_query() )
return;
if ( is_home() ) {
// 블로그 아카이브에 9개의 글만 표시
$query->set( 'posts_per_page', 9 );
return;
}
if ( is_post_type_archive( 'movie' ) ) {
// 'movie' 사용자 정의 글 유형에 대하여 9개 글 표시
$query->set( 'posts_per_page', 9 );
return;
}
}
add_action( 'pre_get_posts', 'hwl_home_pagesize', 1 );
//JB 230125 끝