예제 #1
0
/**
 * Get the url to the next article
 * @return string
 */
function article_next_url()
{
    return article_adjacent_url('next');
}
예제 #2
0
/**
 * Get the url to the next article
 * @param boolean
 * @param boolean
 * @return string
 */
function article_next_url($draft = false, $archive = false)
{
    return article_adjacent_url('next', $draft, $archive);
}