Skip to content

Commit

Permalink
Renamed Wrapper Templates Filter
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxaii committed May 13, 2013
1 parent f006dd2 commit 06f424d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ static function wrap($template) {
array_unshift($templates, sprintf('base-%s.php', self::$base));
}

$templates = apply_filters('roots_wrapping_base', $templates);
$templates = apply_filters('roots_wrap_base', $templates);
return locate_template($templates);
}

Expand All @@ -45,7 +45,7 @@ static function sidebar() {
array_unshift($templates, sprintf('templates/sidebar-%s.php', self::$base));
}

$templates = apply_filters('roots_wrapping_sidebar', $templates);
$templates = apply_filters('roots_wrap_sidebar', $templates);
return locate_template($templates);
}
}
Expand Down

0 comments on commit 06f424d

Please sign in to comment.