• I want to remove the numbers in pagination. I want display only: newer posts or older posts.

    How can I do?

    Thanks

Viewing 1 replies (of 1 total)
  • Hey there javal2009,

    Hope you’re well today!

    You should be able to hide just the numbers by using some CSS code. Please try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:

    https://www.ads-software.com/plugins/simple-custom-css

    .pagination a.page-numbers, .paging-navigation .page-numbers.current {
      display: none;
    }
    
    .pagination a.prev.page-numbers, .pagination a.next.page-numbers {
      display: inline-block;
    }

    This should leave only previous and next links to be displayed and not the numbers as well.

    Hope this helps ??

    Best regards,
    Bojan

Viewing 1 replies (of 1 total)
  • The topic ‘[Theme Twenty Fourteen] Remove numbers in pagination’ is closed to new replies.