• Resolved amanarya17

    (@amanarya17)


    I have pasted this code to my function.php file. But i want to make links circular and increase size of the links.
    The code is:-

    function custom_pagination( $content ) {
    if( is_singular() ) {
    $content .= wp_link_pages('echo=0');
    }
    return $content;
    }
    add_filter( 'the_content','custom_pagination', 1 );

    Please help.

Viewing 1 replies (of 1 total)
  • Theme Author ThemeZee

    (@themezee)

    Hi there,

    Thanks for using Smartline.

    You can use some CSS code to change the default styling of the pagination. No need to add extra PHP code since Smartline already includes a numbered pagination.

    This CSS snippet might help you to get started:

    .post-pagination a {
    font-size: 1.2em;
    border-radius: 25px;
    }

    Best,
    Thomas

Viewing 1 replies (of 1 total)
  • The topic ‘CSS styling for post pagination’ is closed to new replies.