Skip to content

Instantly share code, notes, and snippets.

@wanye71
Created December 5, 2012 14:54
Show Gist options
  • Save wanye71/4216099 to your computer and use it in GitHub Desktop.
Save wanye71/4216099 to your computer and use it in GitHub Desktop.
array values in wordpress action
class NavMenus{
public function test_nav(){
echo array(
'one' => 'This is One',
'two' => 'This is Two',
'three' => 'This is Three'
);
}
}
$hello = new NavMenus;
add_shortcode('hello', array($hello, 'test_nav'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment