Tagged Questions
3
votes
1answer
64 views
Using Offset in Custom Post Type Query
I'm using the following query for a custom post type:
<?php
$posts = get_posts(array(
'numberposts' => -1,
'offset' => 20,
...
0
votes
1answer
130 views
How do I rewrite this loop as a new WP_Query style-loop?
How do I rewrite the if (have_posts()) : ... while (have_posts()) : the_post(); style Wordpress loop below as a new_query style-loop using <?php $the_query = new WP_Query();? ( As shown in ...
0
votes
2answers
172 views
Keeping get_posts' offset and is_paged() synchronized
I am developing the blog-template of my theme, which works as following: The user can input the total post-count to display on each blog-page ($blogpost_count). The blog itself lists post-entries in ...
0
votes
1answer
167 views
How do I add a timezone offset to this query?
Problem is that $today is pulling GMT from the database; I need to offset GMT by -6 hours; Have been unable to find a query with an offset like that.
<?php
$paged = ( get_query_var('paged') ) ? ...