Skip to content

Instantly share code, notes, and snippets.

@markhowellsmead
Last active March 21, 2017 19:34
Show Gist options
  • Save markhowellsmead/fc59937a8507a848cf30c2916bf23ec1 to your computer and use it in GitHub Desktop.
Save markhowellsmead/fc59937a8507a848cf30c2916bf23ec1 to your computer and use it in GitHub Desktop.
WordPress: get a dynamic sidebar as a string
<?php
if (!function_exists('get_dynamic_sidebar')) {
function get_dynamic_sidebar($sidebar_id)
{
ob_start();
dynamic_sidebar($sidebar_id);
$out = ob_get_contents();
ob_end_clean();
return $out;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment