The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
60 views

How to display following posts titles in separate div's on a separate webpage

Intro: I have a webpage that is not part of wordpress. I have incorporated the wp blog posts, by putting The Loop in the page's code. This works, it displays the current posts and their following ...
1
vote
2answers
47 views

Next/Prev posts on same page

Hello WordPress Users, I'm stuck with a problem building my wordpress website and I can't figure out what to do about it. Currently I'm showing 2 posts form the category 'News' at the page 'News'. ...
0
votes
1answer
41 views

Is that the query_posts() the real criminal here?

<div class="single_post"> <?php // The Query query_posts( $args ); // The Loop if(have_posts()) : while ( have_posts() ) : the_post(); ?> <div ...
0
votes
2answers
73 views

Add title for previous and next posts to Yoko Theme

Help! I want to change my "Previous" and "Next" post links to use the actual post titles. I have done all kinds of online research and code manipulation without any success. I am using the Yoko ...
0
votes
3answers
119 views

Show multiple next and previous posts

I've created a portfolio with single posts. When viewing the posts i'd like to show the next / previous 2 posts (portfolio items). Currently i'm using the following code but only shows one post: ...
0
votes
1answer
164 views

Theme Option not Working Inside a Function

Earlier, I asked this question and received a code which should work. Unfortunately, this code is not working. I'm building a themes option panel and want users to be able to choose between ...
0
votes
2answers
62 views

Styling Previous/Next Pages differently from Index

A friend of mine pointed me towards using child elements to style my index page so that I could have one loop and several different visual styles (a featured post, a smaller sub-featured post, and ...
0
votes
1answer
296 views

Plugin: Events manager - Next and previous event

I'm trying to get a navigation in the events of event manager the next/previous post links work but they are ordered by creation date instead of event date. How could it be possible to change this? ...
0
votes
1answer
148 views

Pagination for next page in faq category [closed]

i have a query php query_posts( array ( 'category_name' => 'faq', 'posts_per_page' => 2 ) ) i wanted to add next and previous pages for this but not able to thank you in advance
1
vote
1answer
525 views

Posts archive index pagination in a static page custom query

In WordPress, I have a page for News that is using a specific page template I created. This page is populated by news posts assigned to the news category. I need to show only two of the latest news ...
1
vote
1answer
403 views

get_previous_post in same categories

I have a post in two categories, 1 and 2. I want to get the previous post in the two categories, 1 and 2. get_previous_post(true); With that code I'm getting the previous post in category 1 or 2. ...
1
vote
2answers
1k views

How to show link to next posts in single.php

I can't get get_next_posts_link to work. shouldn't his code work? <?php echo get_next_posts_link(); ?> Well, I am trying to get next 5 posts, any idea how? EDIT: Accroding to: <?php ...
3
votes
1answer
467 views

Get next/previous cousin page

Hey Guys, I'm trying to build pagination links for the next/previous cousin page. For example, my page structure is like this: Top Level A a1 a2 B b1 b2 When I'm on a2, I want the 'Previous ...
1
vote
3answers
978 views

Get Next / Prev 3 Posts in Relation to Current Post

I have 7 posts, like this: 1 2 3 4 - this is the current post 5 6 7 As noted, number four is the current post being displayed. I need to create a query that will allow me to display the previous 3 ...