Forums

wp link pages custom link names (2 posts)

  1. gbaka
    Member
    Posted 9 months ago #

    anyone know of a way to customize each individual page link name differently like putting it in a foreach loop or something

  2. sixhours
    Member
    Posted 9 months ago #

    Each page is assigned a unique ID, and when displayed by wp link pages is given a class of page-1234 where 1234 is the ID. In your stylesheet you can style individual pages differently based on their unique class. So...

    .page-1234 {
    ... Your custom styles ...
    }

Reply

You must log in to post.

About this Topic