Skip to content

Commit

Permalink
fix: deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
lastofpudge committed Feb 21, 2024
1 parent 3de89b4 commit d343294
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "theme/blank",
"type": "wp-theme",
"version": "2.0.18",
"version": "2.0.19",
"description": "Wordpress starter theme with Timber/Twig",
"license": "GPL-3.0-or-later",
"authors": [
Expand Down
4 changes: 2 additions & 2 deletions resources/views/components/header.twig
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<a class="nav-main-link" href="{{ item.link }}">
{{ item.title }}
</a>
{% if item.get_children %}
{% if item.children %}
<ul class="nav-drop">
{% for child in item.get_children %}
{% for child in item.children %}
<li class="nav-drop-item">
<a href="{{ child.link }}">{{ child.title }}</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Theme Name: wp-theme
Theme URI:https://github.com/lastofpudge/wp-theme
Version: 2.0.18
Version: 2.0.19
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Requires PHP: 8.0
Expand Down

0 comments on commit d343294

Please sign in to comment.