Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/1.0.0-beta.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
perruche committed Dec 13, 2021
2 parents e2647d6 + 2a062f7 commit 73154fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@studiometa/create-wordpress-project",
"version": "1.0.0-beta.10",
"version": "1.0.0-beta.11",
"description": "A generator to kickstart a WordPress project in a few seconds! ⚡",
"bin": "cli.js",
"files": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function posts_by_category_slug( $slug, $limit = 10, $exclude = array(),
$params = array(
'posts_per_page' => (int) $limit,
'category_name' => $slug,
'post_type' => 'post',
'post_type' => self::POST_TYPES,
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC',
Expand Down

0 comments on commit 73154fb

Please sign in to comment.