Skip to content
This repository has been archived by the owner on May 5, 2021. It is now read-only.

Commit

Permalink
deploy mechanism change
Browse files Browse the repository at this point in the history
  • Loading branch information
rodica-andronache committed Nov 26, 2018
1 parent 37ec867 commit eee9b34
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@
},
"type": "wordpress-theme",
"require": {
"codeinwp/themeisle-sdk": "master",
"codeinwp/ti-about-page": "master"
"codeinwp/themeisle-sdk": "master"
},
,
"autoload": {
"files": [
"vendor/codeinwp/themeisle-sdk/load.php"
]
}
}
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @return array
*/
function oblique_filter_sdk( $products ) {
$products[] = get_template_directory() . '/style.css';
$products[] = get_template_directory() . '/style.css';
return $products;
}
add_filter( 'themeisle_sdk_products', 'oblique_filter_sdk' );
Expand Down

0 comments on commit eee9b34

Please sign in to comment.