Skip to main content Jump to list of all articles

Build an Awesome Daisy UI WordPress Theme – Part 2

Daisy UI is an awesome selection of Tailwind components for your next WordPress classic theme. You can have your custom theme up and running within a few weeks. In the first part of the series, we set up the environment to build an awesome Daisy UI WordPress theme. This part features building the basic layout, navigation and footer.

The layout before changes
The layout before making any changes.

Dependency Changes

Since the first part, there have been many changes to the infrastructure. Node has been updated, using NVM, to 20.10.0. If you have already set up your environment you can use npm-check-updates to update your dependencies otherwise clone part 2 of the repository on github. You can find part 1 here.

npx npm-check-updates -u

Followed by:

npm install

Layout Changes

The main change added is a margin around the content in the wrapper which starts in the header, below the navigation and ends above the footer in footer.php. I opted to use a simple footer which contains the basic information.

The footer
Added a simple footer

Managing content inside the individual blog posts and pages can be time-consuming when creating your articles in the post editor. To address this problem there is a Tailwind plugin that automatically includes default styles and sizes for headings, paragraphs, tables and so forth. To install the Typography plugin run the following command in your projects terminal.

npm install -D @tailwindcss/typography

There are many classes that you can use from the Typography library. We will simply add the prose class to the entry-contents.php file.

<div class="prose" itemprop="mainEntityOfPage">
....
</div>

Other changes made:
The headings in entry.php have been made larger using Tailwind font sizes.

The navigation before the changes
How it looked before the changes to the navigation.

Navigation

The navigation is the trickiest part of this setup. I have changed the menu to a shorter one in the WordPress dashboard. In Appearance -> Menus choose the short menu in the menu section. I have chosen a 3-part navigation with the logo on the left, nav items, including a dropdown in the middle and a search feature at the end. Something similar to this.

To implement this open header.php and add the following:

   <?php get_template_part('inc/class-daisyui-navwalker');?>
    <header id="header" role="banner">
        <div class="navbar bg-base-200">
            <div class="navbar-start" id="site-title" itemprop="publisher" itemscope itemtype="https://schema.org/Organization">
                <?php
                            if ( is_front_page() || is_home() || is_front_page() && is_home() ) { echo '<h1>'; }
                            echo '<a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name' ) ) . '" rel="home" itemprop="url"><span class="btn btn-ghost text-xl" itemprop="name">' . esc_html( get_bloginfo( 'name' ) ) . '</span></a>';
                            if ( is_front_page() || is_home() || is_front_page() && is_home() ) { echo '</h1>'; }
                            ?>
                        </div>
                        <nav class="navbar-center" id="menu" role="navigation" itemscope itemtype="https://schema.org/SiteNavigationElement">
                            <?php
                     wp_nav_menu( array('menu_id' => 'navbar-menu',
                     'container'=>false,
                     'theme_location' => 'main-menu',
                     'link_before' => '<span itemprop="name">',
                     'link_after' => '</span>',
                     'items_wrap' => '<ul id="%1$s" class="menu menu-horizontal px-1">%3$s</ul>',
                     'walker' => new Daisyui_NavWalker() ) ); ?>
                </nav>
                <div class="navbar-end" id="search"><?php get_search_form(); ?></div>
            </div>
        </header>

To incorporate the Daisy sub-navigation, we have to customise a NavWalker class that walks through each element to build the navigation. In the custom NavWalker class, we search for the menu-item-has-children CSS class and add our custom code. It’s a little bit hacky but it does the job. If you have any suggestions or alternative ways of doing it get in touch. Take a look at class-daisy-navwalker.php on Git Hub.

The navigation after the changes
The navigation after the changes

Todo

As you can see many more features need to be added in future parts.

  • Theme – Default Daisy UI theme
  • Automatic light/dark mode
  • Footer
  • Navigation
  • Search – Not Implemented
  • Mobile friendly
  • Sidebar
  • Next/Previous Post
  • Homepage
  • Post Meta
  • Comments

Conclusion – Daisy UI WordPress Theme Part 2

This concludes part 2 of building an awesome Daisy UI WordPress theme. There are many more changes to be made in the upcoming parts including making our design mobile friendly. Stay tuned! Please feel free to get in touch If you have any questions.


Discover more from WorldOWeb

Subscribe to get the latest posts sent to your email.

2 replies on “Build an Awesome Daisy UI WordPress Theme – Part 2”

Really a great article…
I always wondered if I wasn’t going to burden my sites with daisUi. There are 3 small errors in the walker but nothing bad…
I can’t wait to see what happens next.
Thank you anyway.
Vincent

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.