djanym/wphelpers

A set of helpers for custom themes and plugins

1.1.0 2022-02-01 20:45 UTC

This package is auto-updated.

Last update: 2024-05-14 21:06:31 UTC


README

Helper functions for custom themes or plugins

Features

Navwalker

Usage

<?php
wp_nav_menu( array(
	'menu_class'     => 'navbar-nav',
	'fallback_cb'    => '\Ricubai\WPHelpers\Navwalker::fallback',
	'walker'         => new \Ricubai\WPHelpers\Navwalker(),
) );
?>