The previous-post-link tag has no wiki summary.
-1
votes
1answer
28 views
using images in next/previous_post_link [closed]
In my blog's pagination section, I've used <?php previous_post_link(); ?> and <?php next_post_link(); ?> to generate the newer and older posts links. Within that action, though, I've ...
-1
votes
1answer
36 views
pagination/prev and next page links not showing
I'm having trouble getting my pagination links to work, or even show up. I've tried several variations of the code, but here is what I have in home.php:
<?php get_header(); ?>
<?php ...
5
votes
1answer
107 views
get_adjacent_post alternative on a very large db
I'm using get_next_post and get_previous_post (from the same category) to show the thumbnail and link to the respectives posts in my single template, but it's in a very large db that is giving my ...
0
votes
1answer
20 views
Add Previous/Next Buttons to CPT Single Pages Only
I'm working with a site that is displaying a portfolio CPT on the home page in a "Grid Loop." On the single pages, i'd like to add Previous & Next Item buttons. I thus added this code:
function ...
0
votes
2answers
65 views
Display next 3 posts based on custom taxonomy
I am wondering if anyone could help me accomplish something like this: https://medium.com/thoughts-and-words/5ccef7b3e1fc with custom post types?
I have a custom post type called projects and ...
0
votes
0answers
32 views
previous_post_link() : Within all categories except one
According to this tutorial if I want to display link to previous post in the same category, I can use the following code:
<?php previous_post_link('%link', 'Previous in category', TRUE, '13'); ...
0
votes
2answers
245 views
How to use next_posts_link/previous_posts_link for custom post types paginate?
I have a question about usage of previous_posts_link/next_posts_link. Is it possible to use it for custom post types too?
I like to hear from you.
Thanks in advance.
Casper
0
votes
2answers
41 views
How to add a class and title attribute to the link generated by next/previous post
The following code
<?php previous_post('%', '<', 'no'); ?>
<?php next_post('%', '> ', 'no'); ?>
returns these links, as it should
<a ...
0
votes
2answers
152 views
Using previous_post_link and next_post_link to wrap around post sequence
For a single custom post type, I'm using previous_post_link and next_post_link with simple arrows. (Although text arrows are shown here, in the actual I'm using graphics with the text hidden via CSS.) ...
0
votes
1answer
70 views
Is it possible to remove next-post / previous-post with out creating a custom template?
I'm creating a plugin that uses a custom post type. I do not want to make a custom template for viewing the posts and discovered I can add a filter for the_content to include my custom fields, this ...
5
votes
3answers
434 views
Can the Next/Prev Post links be ordered by menu order or by a meta key?
I have a series of posts that are ordered by a meta_key value. They could also be arranged by menu order, if necessary.
The next/prev post links (generated by next_post_link, previous_post_link, or ...
0
votes
1answer
82 views
Change next_post and previous_link to navigate throught parent categories only
I have this unchanged code from template-tags.php which links through all of the posts on the site. However I would like to restrict it so that it only links through the articles which are in the same ...
-1
votes
1answer
173 views
Retrieving next_post_link() and previous_post_link() in functions.php
I'm trying to create a function in functions.php that includes the next_post_link() and previous_post_link() without success. It returns empty. My guess is that these don't use the post ID... So what ...
0
votes
1answer
106 views
Get Adjacent Post By Tag
In this answer -- How to Get Next or Previous Post in a Specific Tag? -- a working function is provided to generate "next/prev" links by tag rather than category.
How could one make this so that you ...
0
votes
1answer
93 views
navigation among single posts
In the twentyeleven theme each single post page has two navigation links which point to previous and next post, irrespective of the search made by the user. That is, the next post is the successive ...
1
vote
0answers
141 views
Post in Multiple Categories to stay in current category (permalink, next previous post link)
I guess this has been mentioned before, but after 2 days of browsing i haven't find a complete solution. Maybe someone has come across this problem before?
I'm building a designer portfolio where ...
0
votes
1answer
557 views
Next/Previous links doesn't work in the same category
I created a category and call it "Blog". Then I created some posts and assign "Blog" as category for the posts. So I'm trying to go to previous/next into the same category and doesn't work. Here is my ...
-1
votes
1answer
39 views
Please help with display Post Navigation [closed]
I want to display this 2 navigation one to the right and one to the left.
Previous, the left.
Next, the right.
<div class="navigation">
<?php $mam_global_stay_in_cat = ...
0
votes
0answers
17 views
How to show Next/Previous within the same Category? [duplicate]
Possible Duplicate:
Previous/Next Post Within the Category?
I got this code from a website. http://wordpress.mcdspot.com/2010/06/02/stay-in-category/
<div class="navigation">
...
0
votes
1answer
278 views
Previous/Next Post Within the Category?
I want to add a code in my theme to show a Next/Previous link below the post but within the same category. I Don't need a thumbnail but if possible I would appreciated, still that's not important ...
0
votes
1answer
188 views
Next Prev Post link rendering current post thumbnail
i am using below code which should render next and previous post thumbnail but it is showing the current post thumbnail in Custom Post Type single page
<?php
$prevpost = get_previous_post(true);
...
0
votes
1answer
61 views
Previous and Next posts
I use the following code for displaying the previous post thumbnail with links:
<?php
$prevPost = get_previous_post(true);
$prevThumbnail = get_the_post_thumbnail($prevPost->ID, ...
2
votes
1answer
1k views
Get Previous & Next posts by Post ID
How can I go about getting the previous and next posts from outside the loop? Everything I try to do aside from the custom SELECT query (using get_posts or WP_Query) breaks stuff further down the ...
0
votes
2answers
665 views
query_posts pagination will always show identical content
Anyone here see why my pagination won't work? I can get "previous page" to show up, but when navigating to "page-2", the content will stay identical to the content on "page-1".
<?php
/*
Template ...
0
votes
1answer
190 views
How do I display a greyed out next_post_link when there is no next post
Wordpress hides the next and previous post links if there are none, but for the sake of visual consistency I'd like to serve up a greyed out version of the link when there is no next or previous post.
...
-1
votes
1answer
393 views
how to implement next/prev within category archive?
I click on a link in my WP site to open a category archive. I see a list of posts for that category. I click on the permalink of one of those posts to see the full post.
at the top of the window are ...
0
votes
1answer
86 views
grab neighboring content in a query
I'm grabbing a post based on a querystring parameter. How can I get the neighboring posts for a previous and next button?
This will get tricky when you're on the first/last items.
Here is how I'm ...
1
vote
1answer
73 views
Is it possible to skip certain specified pages when using < prev and next > links?
thanks for taking a minute to read my question. I've done some googling and I can't seem to find the answer to this question anywhere. Forgive me if it's somewhere here on stack exchange already.
...
0
votes
1answer
527 views
Ajax (jquery) wp_query pagination returns -1
I am currently developing an ajaxified theme for wordpress. I am listing the posts in a particular category, but the pagination returns -1 when clicked. Lets say I set showposts to 3 and a particular ...
0
votes
1answer
142 views
previous_post_link() next_post_link() arrow position
How can I make the arrow as part of the link please?
<?php next_post_link('%link →'); ?>
The output of above will be | <a href="nextPostLink">NextPostTitle<a> arrow |
0
votes
1answer
758 views
next_post_link / previous_post_link not working with WP_Query
I am trying to add next and previous page buttons to my template, but when I try to use either next_post_link or previous_post_link, it just does not work.
Could it be because I am using WP_Query?
...
2
votes
1answer
472 views
How can I make the “Preview Post” button save and preview in the same window?
When you choose "Preview", which is actually a link,
<a class="preview button" href="?p=52&preview=true"
id="post-preview" tabindex="4">Preview</a>
the post is saved and the ...
0
votes
1answer
190 views
Next and Previous button for a particular category id [closed]
Next and previous works for same category and it has option for excluding category thats fine
what if i want to show next and previous for a particular category id only ???
Thank you in advance
0
votes
1answer
644 views
WP_Query and pagination AGAIN?
I am using the WP_Query class to retrieve some posts according to variables set in url.
All working well until we get to paging. The second page (though having posts - tested it by making paged => 2) ...
0
votes
2answers
362 views
pagination links not displaying
I'm unable to get my 'next_posts_link()' and 'previous_posts_link()' to display. So far I've tried the standard first debug by deactivating all plugins and clearing the cache, I've also tried removing ...
1
vote
2answers
818 views
How to use next_post_link and previous_post_link on single posts in search results
I'm using next_post_link and previous_post_link on my single post templates, to navigate from post to post, so far so good.
But if I do a search and click on a result post, then the next_post_link ...
1
vote
2answers
433 views
Why do next pages load the same content rather then older articles?
For some reason, the 'previous posts' and 'next posts' on the homepage do not load previous posts, but rather the same posts that were on the main page.
Why is that? I don't even know where to start ...
1
vote
1answer
1k views
Next and Previous links on a single taxonomy page only link to same term
I am currently using toolbox as a parent theme and have created a template file called single-projects.php where all posts of the custom post type 'projects' are shown. The previous and next buttons ...
0
votes
2answers
462 views
Disable “previous link” in first post and “next link” in last post
how can I disable "previous link" in first post and "next link" in last post?
thank you
3
votes
3answers
579 views
is it possible to get next_post_link
I have come across a problem whilst using the next_post_link() function.
It seems that this function automatically echo's, for position reasons I need this to just return the link. Is there any ...
0
votes
2answers
428 views
Making next_posts_link(); return posts by month
I'm building a site for a magazine using WP and am needing to display a month of posts at a time.
How would I make the next_posts_link(); and previous_posts_link(); functions return results, shorted ...
2
votes
2answers
484 views
specify meta_key / meta_value condition for prev_post_link and next_post_link
I've got a custom post type (CPT) called event. Every event has got an associated meta_key called event_date.
I want to make sure that events with empty event_date won't appear in my list of all ...
4
votes
7answers
2k views
How can i add title attributes to next and previous post link functions
It's a pretty simple question really! For some reason a title attribute is not appended to next_post_link and prev_post_link calls in Wordpress.
Anyone got any tips on this?
Thanks
3
votes
1answer
929 views
Why is previous_post_link and next_post_link working outside of the Loop?
This is my single.php file:
I'm using previous_post_link(); and next_post_link();.
In the Worpress codex it says that it only works inside the loop.
<?php
/**
* The Template for displaying all ...
1
vote
3answers
1k views
Thumbnail (featured image) of next and previous post is not being properly displayed!
I'm using this code to display the thumbnail (featured picture) of the previous and next post (a custom post type called Blocks).
(A custom loop)
<?php // Create and run custom loop
...
1
vote
2answers
730 views
adding custom fields to next and previous post link
Im trying to make my next and previous post buttons display my custom field but for some reason it doesnt display the custom field its just blank. Heres my code.
<div id="next-prev-links">
...
2
votes
1answer
406 views
Getattachment next and previous by author only
Im trying to get the next and previous attachment by the user its currently displaying, this is what I have and it works great except it gets all of the attachments instead of just the ones from a ...
1
vote
1answer
595 views
Showing Thumbnail from Previous and Next Posts
Is there a simple way to use the post thumbnail when calling previous_post_link() and next_post_link()?