-
I cannot use the loop template in the author profiles so i used a content template but the pagination is basic (wordpress). Can i use the pagination or is it possible to style it that way?
This it how it has to look like –> https://alexasia.de/thailand/
This is how it looks at the moment –> https://alexasia.de/autor/alex/
Thank you!
-
Hi there,
no, it would have to have the Query Loop for it to work.
You could use some PHP and CSS to style the theme nav to look similar.You can change the next and previous icons with this snippet:
add_filter( 'generate_previous_link_text', function() { return '<<'; } ); add_filter( 'generate_next_link_text', function() { return '>>'; } );
You can return the SVG HTML inside.
Once there I can assist with the CSS
-
Works like charm. Thanks!
-
Glad to hear that
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.