Tagged Questions
0
votes
1answer
124 views
Make wp_link_pages() suitable for Twitter Bootstrap markup
Below there's the Wordpress code found in post-template.php for the wp_link_pages() function - this function generates a page navigation for posts or pages having the content split into multiple ...
0
votes
1answer
19 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
54 views
Unable to Change “Pages:” Before WP_LINK_PAGES
Below is a functions.php code for wp_link_pages which allows pagination and previous/next links to be displayed. It also wraps each pagination link in a span class called "classlinks".
I need to ...
0
votes
1answer
30 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 ...
0
votes
2answers
698 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
844 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 ...
0
votes
4answers
3k views
How to style current page number (wp_link_pages)?
When a post is split on more pages TwentyTen theme use the native function wp_link_pages to display a navigation page bar at the end of post.
I am trying to style those elements for my theme, but ...