Skip to content

Instantly share code, notes, and snippets.

@LinzardMac
Created May 24, 2013 16:51
Show Gist options
  • Select an option

  • Save LinzardMac/5644868 to your computer and use it in GitHub Desktop.

Select an option

Save LinzardMac/5644868 to your computer and use it in GitHub Desktop.
//here it returns NULL
global $wp_query, $wp_registered_sidebars, $wp_registered_widgets;
var_dump ($wp_registered_sidebars);
$sidebar_contents = "";
ob_start();
dynamic_sidebar('top-util');
$sidebar_contents = ob_get_contents();
ob_end_clean();
return $sidebar_contents;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment