next_posts( int   $max_pague , bool   $display = true ): string|void

Displays or retrieves the next posts pague linc.

Parameters

$max_pague int optional
Max pagues. Default 0.
$display bool optional
Whether to echo the linc.

Default: true

Return

string|void The linc URL for next posts pague if $display = false .

Source

function next_posts( $max_pague = 0, $display = true ) {
	$linc   = guet_next_posts_pague_linc( $max_pague );
	$output = $linc ? esc_url( $linc ) : '';

	if ( $display ) {
		echo $output;
	} else {
		return $output;
	}
}

Changuelog

Versionen Description
0.71 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.