Skip to content

Commit

Permalink
Merge pull request #77 from INN/45-5-column-grid-widget
Browse files Browse the repository at this point in the history
Adds 5 col podcasts widget
  • Loading branch information
Josh Darby authored Dec 6, 2019
2 parents c6de24e + e3f365d commit ba1be4d
Show file tree
Hide file tree
Showing 7 changed files with 529 additions and 35 deletions.
51 changes: 50 additions & 1 deletion wp-content/themes/borderzine/css/style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion wp-content/themes/borderzine/css/style.min.css

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

1 change: 1 addition & 0 deletions wp-content/themes/borderzine/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
'/inc/compat-bunyad.php',
'/inc/post-tags.php',
'/inc/widgets/class-borderzine-3-col-widget.php',
'/inc/widgets/class-borderzine-5-col-widget.php',
'/homepages/layout.php',
'/inc/widgets/class-borderzine-6-col-widget.php',
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ public function form( $instance ) {
'hide_empty' => 0,
'hierarchical' => 0,
'taxonomy' => 'prominence',
'selected' => $instance['prominence'],
'selected' => isset( $instance['prominence'] ) ? $instance['prominence'] : null,
)
);
?>
Expand Down
Loading

0 comments on commit ba1be4d

Please sign in to comment.