“Ustaw posty_per_page” Kod odpowiedzi

Ustaw posty_per_page

global $wp_query;
$wp_query->set('posts_per_page', 1);
$wp_query->query($wp_query->query_vars);
Wide-eyed Wallaby

Posts_per_page Oft

function wpsites_exclude_latest_post( $query ) {
	if ( $query->is_home() && $query->is_main_query() ) {
		$query->set( 'offset', '1' );
	}
}

add_action( 'pre_get_posts', 'wpsites_exclude_latest_post', 1 );
Plain Polecat

Odpowiedzi podobne do “Ustaw posty_per_page”

Pytania podobne do “Ustaw posty_per_page”

Więcej pokrewnych odpowiedzi na “Ustaw posty_per_page” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu