Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

posts_per_page offet

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 );
Source by codex.wordpress.org #
 
PREVIOUS NEXT
Tagged: #offet
ADD COMMENT
Topic
Name
6+5 =