Skip to content

Instantly share code, notes, and snippets.

@LinzardMac
Created May 23, 2013 23:37
Show Gist options
  • Select an option

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

Select an option

Save LinzardMac/5640311 to your computer and use it in GitHub Desktop.
public function hookDisplayFooter(){
global $wp_registered_sidebars, $wp_registered_widgets;
var_dump($wp_registered_sidebars);
var_dump($wp_registered_widgets);
function get_dynamic_sidebar($index = 1)
{
$sidebar_contents = "";
ob_start();
dynamic_sidebar($index);
$sidebar_contents = ob_get_clean();
return $sidebar_contents;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment