Skip to content

Commit

Permalink
fixed bug with number of posts in frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
llemurya committed Jul 31, 2015
1 parent aa22b71 commit 4d3ba09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ public function get_frontend_data($post_id)

$posts = get_posts(array(
'post__in' => $posts_id,
'post_type' => $post_type
'post_type' => $post_type,
'numberposts' => -1
));

foreach ($posts as $post) {
Expand Down
2 changes: 1 addition & 1 deletion manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

$manifest['name'] = __( 'Population Methods', 'fw' );
$manifest['description'] = '';
$manifest['version'] = '1.0.9';
$manifest['version'] = '1.0.10';

$manifest['github_update'] = 'ThemeFuse/Unyson-PopulationMethods-Extension';

0 comments on commit 4d3ba09

Please sign in to comment.