Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
add_action( 'pre_get_posts', 'wpz_pre_get_posts', 1 ); function wpz_pre_get_posts( $query ) { if ( $query->is_front_page() || $query->is_home() ) { $sticky = get_option( 'sticky_posts', false ); if ( $sticky ) { $query->set( 'offset', count( $sticky ) ); } } }
wp_add_inline_script()
wp_query()