Skip to content

Instantly share code, notes, and snippets.

@fahidjavid
Last active November 24, 2015 17:46
Show Gist options
  • Save fahidjavid/07a1dde77d9bfbe667a3 to your computer and use it in GitHub Desktop.
Save fahidjavid/07a1dde77d9bfbe667a3 to your computer and use it in GitHub Desktop.
[WordPress] Modify the posts query on the taxonomy template.
<?php
global $wp_query;
query_posts(
array_merge(
array(
'order' => 'ASC',
'posts_per_page' => 8
),
$wp_query->query
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment