Tagged Questions
0
votes
1answer
236 views
Exclude post format from get_posts
The title basically says it all.
I know I can use the following to get posts from the aside post format:
$args = array(
'post_type'=> 'post',
'post_status' => 'publish',
'order' ...
1
vote
1answer
687 views
Exclude Current Post from Recent Posts Loop
what would be the best way to exclude the current post I am viewing from this recent posts query. Thank You!
<?php
global $post;
if (in_category('top-lists')) {
...
0
votes
2answers
2k views
exclude category from get_posts?
getting posts by cat with get_posts but need to exclude another cat called london or id 10. is this possible?
best, Dc.
// array(7,-10)
$laargsM = array('category' => 7, ...