Tagged Questions
0
votes
0answers
28 views
is_front_page conditional problem [closed]
Either of these two conditions work by themselves, but when I put them in this if/else statement, I always receive an error:
Parse error: syntax error, unexpected '}' in ...
1
vote
2answers
320 views
Conditional custom field query
I'm working on a job board-type site, and the client want to sell featured posts. They want the featured posts to expire from showing up in the "featured" section after a predetermined period of time, ...
0
votes
2answers
281 views
Is there a PHP function that can match anything after the given URL, so my IF statement will work in each instance?
I have an IF statement shown below that runs one of 2 custom queries, based on the url. The problem I'm facing is if the url contains pagination such as /page/2/, my query breaks because the url isn't ...
0
votes
1answer
947 views
If have posts a week old, display, else display a different loop
This is what I have.
<?php
$week = date('W');
$year = date('Y');
$projects_in_news = new WP_Query(
array(
'post_type' =>'news',
'posts_per_page' ...
1
vote
1answer
560 views
Can I create a loop with multiple post types and specify different $args for each post type?
I'd like to create a custom loop that includes all Post types: Post and Video. Then I'd like to specify to show all posts of the post type Video, but only show posts that are in the category ...