"wp-query" ambiguously refers to one of two things. 1) WP_Query is a class native to Wordpress which allows users to query the posts database using a number of criteria. 2) $wp_query is the default object that holds the main query object on each WordPress page.
0
votes
1answer
20 views
Display posts from a category
I am trying to display a bunch of posts from a single category on the category page, using multiple loops.
<div id="featured-content" class="clearfix">
<?
// assign the variable as current ...
-1
votes
0answers
11 views
List pages, posts, or custom post type URLs based on user form selection
I'd like to set up a form with radio buttons for the following:
List everything (get URLs for all pages, posts, CPTs)
List all posts
List all pages
List all custom post type 1
List all custom post ...
0
votes
1answer
15 views
next_posts_link returns same content of 1st page
Pagination seems to work fine... I have 21 posts... and it will go to 3 pages... however... every page shows 10 posts and the same content as the first page....
<?php
$temp = $wp_query;
$wp_query= ...
0
votes
0answers
31 views
Custom search: Search posts but display parent page in results
I'm using Wordpress 3.5.1 with a modified twentytwelve theme.
My main site structure is based on the Smooth Slider plugin (jQuery Cycle).
I have Pages that contain only a shortcode (for example, ...
0
votes
1answer
17 views
Highlight post in sidebar on single page
When you have a menu for say pages, it's easy to highlight your current page, since WP puts a class on it.
But what I have is a sidebar with the 20 latest posts in a loop and a separate main content ...
0
votes
1answer
36 views
wp-query Shortcode in Gravity Forms Notification
I have the following code that runs two wp-query loops upon form submission to display specific posts depending on the users choices in the form (The form fields are radio buttons with values that ...
0
votes
1answer
22 views
Can you order posts from wp_query by two custom meta fields?
I'm working on a site that lists events. Right now this query lists events by date:
$args = array(
'post_type' => 'espresso_event',
'post_status' => ...
0
votes
1answer
27 views
404 on Pages for Custom Post Type & Query_Posts
It took me quite a while to find a good solution for ordering a custom post type by two custom meta keys. When I finally got it working, I found out the pagination no longer works. I've tried dozens ...
0
votes
0answers
20 views
Custom Post Query Combined with Conditional Tags
Is it possible to combine displaying a list of custom post types on a single page depending on conditional tags?
Below is what I have so far, basically if there are 4 posts or less show the posts, if ...
1
vote
1answer
29 views
creating wp query with posts with specific category
Im running a specific wp_query to show the thumbnails in a slider of a specific category.
<?php $the_query = new WP_Query ('showposts=2', 'category_name=Events'); ?>
This doesnt appear to be ...
0
votes
1answer
18 views
Finding a post's slug
I'm using wp_query() to get custom posts from the database. I want to list these out as links to the entries, so I'm thinking I could use the slugs. Sadly these don't seem to be included in the ...
0
votes
1answer
28 views
wp_query in a shortcode
I am trying to put several queries in a shortcode so that I can call them in a page instead of using custom templates. I got my query going but I only see some of the content on the page. The image ...
0
votes
1answer
25 views
How to use WP_Query in a CPT achive page?
I can't get WP_Query to work in my custom-post-type archive page. Can someone please tell me what I'm doing wrong? I would appreciate any help.
Here's the code in archive-bulletin.php:
<?php ...
0
votes
1answer
28 views
Cant' Display Custom Post Type Title Base on Tax Terms
Trying to list all Custom Post Type titles based on filtered Custom Taxonomy Terms I am getting the list of all post titles instead of getting the list of Queried post.
Here is the code I am using:
...
0
votes
1answer
19 views
Problem with is_tax in WP_Query loop
The code below is the 2nd of 4 loops in "page-balls.php". Everything else is working correctly.
I'm trying to display a tennis ball graphic if the post being retrieved has a the term "tennis-ball" ...