anyone know of a way to customize each individual page link name differently like putting it in a foreach loop or something
anyone know of a way to customize each individual page link name differently like putting it in a foreach loop or something
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 ...
}
You must log in to post.