Tagged Questions
0
votes
1answer
49 views
WP_LINK_PAGES Generating Unnecessary </p> Tag
This is the current output for my WP_LINK_PAGES, notice the unnecessary </p> tag at the end.
My code for my custom WP_LINK_PAGES can be found here.
<div id="link_wrap"> <span ...
0
votes
1answer
20 views
Closing WP_LINK_PAGES DIV ID w/After Argmuent
In my code below I need to close the div "link_wrap" which I created with $args['before'] = '<div id="link_wrap">';
When I try to paste $args['after'] = '</div>'; above return $args; it ...
0
votes
1answer
32 views
Adding an Unlinked Space in a Custom Function
This question has been a pain in my side for the last few days.
I am using a function to display page numbers and next/previous links with WP_LINK_PAGES. The code I'm using (below) is a shortened ...
1
vote
1answer
229 views
PHP code to use on next & previouspage links
I'm having an issue with wp_link_pages tag. I want to list the number of pages of each post with 'next' and 'previous' links that are two image arrows.
To better understand the problem I'm having, ...
0
votes
2answers
713 views
Make Current/Active Page Number a Link (WP_LINK_PAGES)
With the default wp_link_pages the current/active page number is not a link. I would like to find a code/hack which turns the current/active page into a link to the top of the page.
I am already ...
0
votes
2answers
908 views
Making a Killer wp_link_pages
I am trying to achieve a similar look to the image below, a working example can be found here: http://www.menshealth.com/celebrity-fitness/mark-wahlberg-fighter-workout
The needed code must do the ...