From 0921b0bcf88d5bb0df433fbd66dc09fff5e8f5e8 Mon Sep 17 00:00:00 2001 From: Harry Finn Date: Mon, 30 Jan 2017 14:33:07 +0000 Subject: [PATCH] Fix method call in content helper * Corrects call of private method within content helpers class --- includes/class.content-helpers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class.content-helpers.php b/includes/class.content-helpers.php index 6b4303a..5624a40 100644 --- a/includes/class.content-helpers.php +++ b/includes/class.content-helpers.php @@ -11,7 +11,7 @@ public function __construct() { public function omo_default_wp_nav_menu_args($args) { if(has_nav_menu($args['theme_location']) === false) { - $args['fallback_cb'] = omo_default_menu_fallback($args); + $args['fallback_cb'] = $this->omo_default_menu_fallback($args); } return $args;