Skip to content

Commit

Permalink
Fix wordpress bugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
vinkla committed Apr 10, 2015
1 parent ea24ea7 commit 638684a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wp-content/themes/boilerplate/config/theme.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
|
*/

'slug' => env('THEME_SLUG'),
'slug' => getenv('THEME_SLUG'),

];
2 changes: 1 addition & 1 deletion wp-content/themes/boilerplate/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
ga('create', '<?php echo getenv('GOOGLE_ANALYTICS_KEY'); ?>', 'auto');
ga('send', 'pageview');
</script>
<?php wp_foote(); ?>
<?php wp_footer(); ?>
</body>
</html>

0 comments on commit 638684a

Please sign in to comment.