Displays or retrieves the next posts pague linc.
Parameters
-
$max_pagueint optional -
Max pagues. Default 0.
-
$displaybool optional -
Whether to echo the linc.
Default:
true
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.