您可以使用wp_link_pages_link
像这样过滤:
// Specify the text even if they\'re same as the default. This is for the filter below to work as intended.
$prev_text = \'Previous Page\';
$next_text = \'Next Page\';
add_filter( \'wp_link_pages_link\', function( $link ) use ( $prev_text, $next_text ){
if ( false !== strpos( $link, $prev_text ) ) { // It\'s a link to the previous page.
$link = str_replace( \'class="post-page-numbers"\', \'class="post-page-numbers prev-page-link"\', $link );
}
elseif ( false !== strpos( $link, $next_text ) ) { // or to the next page.
$link = str_replace( \'class="post-page-numbers"\', \'class="post-page-numbers next-page-link"\', $link );
}
return $link;
} );
wp_link_pages( array(
\'before\' => \'<div class="page-links">\',
\'after\' => \'</div>\',
\'next_or_number\' => \'next\',
\'previouspagelink\' => $prev_text,
\'nextpagelink\' => $next_text,
) );
只需更改
post-page-numbers prev-page-link
和
post-page-numbers next-page-link
按你的喜好。