Skip to content

Commit

Permalink
Some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
inc2734 committed Sep 21, 2017
1 parent c323bfd commit 1aa7378
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions resources/app/setup/updater.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@

use Inc2734\WP_GitHub_Theme_Updater\GitHub_Theme_Updater;

// @codingStandardsIgnoreStart
// $updater = new GitHub_Theme_Updater( get_stylesheet(), '', '' );
// @codingStandardsIgnoreEnd
14 changes: 7 additions & 7 deletions resources/template-parts/sidebar-widget-area.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
* @license GPL-2.0+
*/

if ( ! is_active_sidebar( get_post_type() . '-post-type-sidebar-widget-area' ) ) {
return;
}
?>
if ( ! is_active_sidebar( get_post_type() . '-post-type-sidebar-widget-area' ) ) {
return;
}
?>

<div class="l-sidebar-widget-area">
<?php dynamic_sidebar( get_post_type() . '-post-type-sidebar-widget-area' ); ?>
</div>
<div class="l-sidebar-widget-area">
<?php dynamic_sidebar( get_post_type() . '-post-type-sidebar-widget-area' ); ?>
</div>

0 comments on commit 1aa7378

Please sign in to comment.