• Resolved AZBros

    (@azbros)


    Hi,
    I’d like to break a page into multiple parts with pagebreaks, but instead of using the standard Pagination links at the bottom, I want to manually create links for each page. I know how to find the links to the new pages, but I was wondering if there was an easy way to hide the Pagination links on a single page or post. Typically I want to use the standard Pagination links, but in very rare cases, I’d like to manually add the links.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi AZBros. The page identifier is a class in the <body> element, something like “.postid-54”. You’d use that to hide it on only that page:

    .postid-54 .pagination {
        display: none;
    }
    Thread Starter AZBros

    (@azbros)

    Thanks, this appears to work.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide Pagination On Individual Page?’ is closed to new replies.