How to break the wp_link_pages in two lines
You could potentially use the before, after, and separator arguments passed to wp_link_pages() to wrap each item in a span, then target the spans via CSS. Here’s your current code: wp_link_pages( ‘before=LQ &pagelink=Chapter %’ ); Converting to an array, because it’s easier to follow/manipulate: wp_link_pages( array( ‘before’ => ‘LQ ‘, ‘pagelink’ => ‘Chapter %’ ) … Read more